Skip to content

Commit

Permalink
AppControl Manager v.1.7.0.0 (#459)
Browse files Browse the repository at this point in the history
Full change log available here: #459
  • Loading branch information
HotCakeX authored Dec 20, 2024
1 parent 4e41f63 commit e164702
Show file tree
Hide file tree
Showing 200 changed files with 46,629 additions and 25,137 deletions.
28 changes: 28 additions & 0 deletions AppControl Manager/.editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,21 @@
spelling_exclusion_path = .\exclusion.dic

# Miscellaneous settings
# https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties
trim_trailing_whitespace = true
end_of_line = crlf
indent_style = tab
insert_final_newline = true

# https://learn.microsoft.com/en-us/dotnet/fundamentals/code-analysis/style-rules/dotnet-formatting-options
dotnet_sort_system_directives_first = true

# https://learn.microsoft.com/en-us/dotnet/fundamentals/code-analysis/style-rules/csharp-formatting-options
csharp_using_directive_placement = outside_namespace:error
csharp_prefer_simple_using_statement = true:error
csharp_new_line_before_members_in_object_initializers = true:error
csharp_space_after_dot = false:error
csharp_space_before_comma = false:error

# CA1304: Specify CultureInfo
dotnet_diagnostic.CA1304.severity = error
Expand Down Expand Up @@ -1065,3 +1079,17 @@ dotnet_diagnostic.IDE0079.severity = error

# CA1505: Avoid unmaintainable code
dotnet_diagnostic.CA1505.severity = error

# CA1047: Do not declare protected members in sealed types
dotnet_diagnostic.CA1047.severity = error

# IDE0054: Use compound assignment
dotnet_diagnostic.IDE0054.severity = error

# IDE0161: Use file-scoped namespace - enforces file-scoped namespace style with error severity
# https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/proposals/csharp-10.0/file-scoped-namespaces
dotnet_diagnostic.IDE0161.severity = error
csharp_style_namespace_declarations = file_scoped:error

# CA1002: Do not expose generic lists
dotnet_diagnostic.CA1002.severity = error
Loading

0 comments on commit e164702

Please sign in to comment.