Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions CODESTYLE.md
Original file line number Diff line number Diff line change
Expand Up @@ -187,9 +187,7 @@ Note: Code snippets are illustrative examples only. Replace namespaces/types to
- YAML files: 2 spaces
- JSON files: 4 spaces

5. **Line endings**
- C#, XML, YAML, JSON, Windows scripts: CRLF
- Linux scripts (`.sh`): LF
5. **Line endings**: not specified here - governed per repo by `.editorconfig` / `.gitattributes` per the [AGENTS.md][agents] "Line Endings" section.

6. **`#region`**: Do not use regions. Prefer logical file/folder/namespace organization.
7. **Member ordering (StyleCop SA1201)**: const -> static readonly -> static fields -> instance readonly fields -> instance fields -> constructors -> public (events -> properties -> indexers -> methods -> operators) -> non-public in same order -> nested types
Expand Down