Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,4 @@
]
}
}
}
}
38 changes: 22 additions & 16 deletions .cspell.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,49 +5,55 @@
# - Maintain professional documentation and code quality
# - Catch spelling errors before publication
# - Support consistent technical terminology usage
# - Misspelled words should be fixed in the source
# - NEVER add a misspelled word to the 'words' list
# - NEVER add a misspelled word - fix the typo in the source instead
# - NEVER add a British-English spelling - correct to US-English in the source
# - PROPOSE only genuine technical terms/names as needed

version: "0.2"
version: '0.2'
language: en

# Project-specific technical terms and tool names
words:
- buildmark
- compilability
- Dema
- entrantly
- fileassert
- hotspot
- hotspots
- Hostx
- misparse
- msbuild
- msvc
- opencover
- pandoc
- Pandoc
- postconditions
- reqstream
- reviewmark
- sarif
- sarifmark
- SARIF
- slnx
- sonar
- sonarmark
- versionmark
- VSINSTALLDIR
- weasyprint
- Weasy
- Weasyprint
- xunit
- Xunit
- yamlfix

# Exclude common build artifacts, dependencies, and vendored third-party code
ignorePaths:
- "**/.git/**"
- "**/node_modules/**"
- "**/.venv/**"
- "**/thirdparty/**"
- "**/third-party/**"
- "**/3rd-party/**"
- "**/generated/**"
- "**/AGENT_REPORT_*.md"
- "**/.agent-logs/**"
- "**/bin/**"
- "**/obj/**"
- '**/.git/**'
- '**/node_modules/**'
- '**/.venv/**'
- '**/thirdparty/**'
- '**/third-party/**'
- '**/3rd-party/**'
- '**/.agent-logs/**'
- '**/bin/**'
- '**/obj/**'
- '**/generated/**'
- package-lock.json
13 changes: 0 additions & 13 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@ indent_size = 4
csharp_prefer_braces = true:warning
csharp_prefer_simple_using_statement = true:suggestion
csharp_style_namespace_declarations = file_scoped:warning
csharp_style_prefer_method_group_conversion = true:silent
csharp_style_prefer_top_level_statements = true:silent
csharp_style_expression_bodied_methods = false:silent
csharp_style_expression_bodied_constructors = false:silent
csharp_style_expression_bodied_operators = false:silent
Expand All @@ -63,33 +61,22 @@ dotnet_naming_rule.non_field_members_should_be_pascal_case.style = pascal_case
# Symbol specifications
dotnet_naming_symbols.interface.applicable_kinds = interface
dotnet_naming_symbols.interface.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
dotnet_naming_symbols.interface.required_modifiers =

dotnet_naming_symbols.types.applicable_kinds = class, struct, interface, enum
dotnet_naming_symbols.types.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
dotnet_naming_symbols.types.required_modifiers =

dotnet_naming_symbols.non_field_members.applicable_kinds = property, event, method
dotnet_naming_symbols.non_field_members.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
dotnet_naming_symbols.non_field_members.required_modifiers =

# Naming styles
dotnet_naming_style.begins_with_i.required_prefix = I
dotnet_naming_style.begins_with_i.required_suffix =
dotnet_naming_style.begins_with_i.word_separator =
dotnet_naming_style.begins_with_i.capitalization = pascal_case

dotnet_naming_style.pascal_case.required_prefix =
dotnet_naming_style.pascal_case.required_suffix =
dotnet_naming_style.pascal_case.word_separator =
dotnet_naming_style.pascal_case.capitalization = pascal_case

# Organize usings
dotnet_sort_system_directives_first = true
dotnet_separate_import_directive_groups = false

# Code quality - set to suggestion to not break existing code
dotnet_code_quality_unused_parameters = all:suggestion

# Nullable reference types
csharp_nullable_reference_types = enable
Loading
Loading