All rules
IDE1006Naming MS default: Suggestion

Naming styles

Enforce naming conventions (e.g. PascalCase for public members).

Microsoft docs

Description

Reports identifiers that do not match the configured naming rules. Naming rules themselves are defined via dotnet_naming_* options.

Why it matters

Consistent naming is one of the highest-signal readability conventions in a codebase.

Examples

Avoid
public int order_count;
Prefer
public int OrderCount;
Group results
0 yes 0 no
ConsensusNone (disabled)
Severity preference (yes voters)
Suggestion0
Warning0
Error0