Skip to content

Commit 4d6cf59

Browse files
MalcolmnixonMalcolm Nixon
andauthored
Minor updates to the AGENTS.md file. (#69)
Co-authored-by: Malcolm Nixon <malcolm.nixon@hiarc.inc>
1 parent 7456a52 commit 4d6cf59

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

AGENTS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ Use these commands to perform common development tasks:
6060
## Code Style and Conventions
6161

6262
* Follow standard C# naming conventions (PascalCase for classes/methods/properties, camelCase for local variables).
63-
* Use nullable reference types (`#nullable enable`).
64-
* Warnings are treated as errors (`<WarningsAsErrors>true</WarningsAsErrors>`).
63+
* Nullable reference types are enabled at the project level (`<Nullable>enable</Nullable>` in .csproj files). Do not use file-level `#nullable enable` directives.
64+
* Warnings are treated as errors (`<TreatWarningsAsErrors>true</TreatWarningsAsErrors>`).
6565
* Avoid public fields; prefer properties.
6666

6767

0 commit comments

Comments
 (0)