-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
code style preferences, EnforceCodeStyleInBuild, GenerateDocumentatio…
…nFile, embedded DebugType,
- Loading branch information
Showing
46 changed files
with
1,210 additions
and
1,171 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,42 @@ | ||
# Code files | ||
[*.{cs}] | ||
root = true | ||
|
||
[*.cs] | ||
|
||
# Organize usings | ||
dotnet_sort_system_directives_first = true | ||
dotnet_separate_import_directive_groups = false | ||
|
||
|
||
# Simplify name (IDE0001) | ||
dotnet_diagnostic.IDE0001.severity = warning | ||
|
||
# 'var' preferences (IDE0007 and IDE0008) | ||
dotnet_diagnostic.IDE0008.severity = warning | ||
csharp_style_var_elsewhere = false:warning | ||
csharp_style_var_for_built_in_types = true:warning | ||
csharp_style_var_when_type_is_apparent = true:warning | ||
|
||
# Add braces (IDE0011) | ||
dotnet_diagnostic.IDE0011.severity = warning | ||
|
||
# Add accessibility modifiers (IDE0040) | ||
dotnet_diagnostic.IDE0040.severity = warning | ||
|
||
# Formatting rule (IDE0055) | ||
dotnet_diagnostic.IDE0055.severity = warning | ||
|
||
# Use simple 'using' statement (IDE0063) | ||
dotnet_diagnostic.IDE0063.severity = warning | ||
|
||
# Simplify new expression (IDE0090) | ||
dotnet_diagnostic.IDE0090.severity = warning | ||
|
||
# Namespace declaration preferences (IDE0160 and IDE0161) | ||
dotnet_diagnostic.IDE0161.severity = warning | ||
csharp_style_namespace_declarations = file_scoped:warning | ||
|
||
# Use LibraryImportAttribute instead of DllImportAttribute to generate p/invoke marshalling code at compile time. (SYSLIB1054) | ||
dotnet_diagnostic.SYSLIB1054.severity = warning | ||
dotnet_diagnostic.SYSLIB1054.severity = warning | ||
|
||
# Missing XML comment for publicly visible type or member 'Type_or_Member' | ||
dotnet_diagnostic.CS1591.severity = suggestion |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.