-
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.
- Loading branch information
0 parents
commit 78a7845
Showing
17 changed files
with
1,031 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,252 @@ | ||
; EditorConfig to support per-solution formatting. | ||
; Use the EditorConfig VS add-in to make this work. | ||
; http://editorconfig.org/ | ||
; | ||
; Here are some resources for what's supported for .NET/C# | ||
; https://kent-boogaart.com/blog/editorconfig-reference-for-c-developers | ||
; https://docs.microsoft.com/en-us/visualstudio/ide/editorconfig-code-style-settings-reference?view=vs-2017 | ||
; | ||
; Be **careful** editing this because some of the rules don't support adding a severity level | ||
; For instance if you change to `dotnet_sort_system_directives_first = true:warning` (adding `:warning`) | ||
; then the rule will be silently ignored. | ||
|
||
; This is the default for the codeline. | ||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
||
[*.cs] | ||
indent_size = 4 | ||
dotnet_sort_system_directives_first = true | ||
|
||
# Don't use this. qualifier | ||
dotnet_style_qualification_for_field = false:suggestion | ||
dotnet_style_qualification_for_property = false:suggestion | ||
|
||
# use int x = .. over Int32 | ||
dotnet_style_predefined_type_for_locals_parameters_members = true:suggestion | ||
|
||
# use int.MaxValue over Int32.MaxValue | ||
dotnet_style_predefined_type_for_member_access = true:suggestion | ||
|
||
# Require var all the time. | ||
csharp_style_var_for_built_in_types = true:suggestion | ||
csharp_style_var_when_type_is_apparent = true:suggestion | ||
csharp_style_var_elsewhere = true:suggestion | ||
|
||
# Disallow throw expressions. | ||
csharp_style_throw_expression = false:suggestion | ||
|
||
# Newline settings | ||
csharp_new_line_before_open_brace = all | ||
csharp_new_line_before_else = true | ||
csharp_new_line_before_catch = true | ||
csharp_new_line_before_finally = true | ||
csharp_new_line_before_members_in_object_initializers = true | ||
csharp_new_line_before_members_in_anonymous_types = true | ||
|
||
# Namespace settings | ||
csharp_style_namespace_declarations = file_scoped | ||
|
||
[*.{xml,config,*proj,nuspec,props,resx,targets,yml,tasks}] | ||
indent_size = 2 | ||
|
||
# Xml config files | ||
[*.{props,targets,ruleset,config,nuspec,resx,vsixmanifest,vsct}] | ||
indent_size = 2 | ||
|
||
[*.json] | ||
indent_size = 2 | ||
|
||
[*.{ps1,psm1}] | ||
indent_size = 4 | ||
|
||
[*.sh] | ||
indent_size = 4 | ||
end_of_line = lf | ||
|
||
[*.{razor,cshtml}] | ||
charset = utf-8-bom | ||
|
||
[*.{cs,vb}] | ||
# CA1018: Mark attributes with AttributeUsageAttribute | ||
dotnet_diagnostic.CA1018.severity = warning | ||
|
||
# CA1047: Do not declare protected member in sealed type | ||
dotnet_diagnostic.CA1047.severity = warning | ||
|
||
# CA1305: Specify IFormatProvider | ||
dotnet_diagnostic.CA1305.severity = warning | ||
|
||
# CA1507: Use nameof to express symbol names | ||
dotnet_diagnostic.CA1507.severity = warning | ||
|
||
# CA1725: Parameter names should match base declaration | ||
dotnet_diagnostic.CA1725.severity = suggestion | ||
|
||
# CA1802: Use literals where appropriate | ||
dotnet_diagnostic.CA1802.severity = warning | ||
|
||
# CA1805: Do not initialize unnecessarily | ||
dotnet_diagnostic.CA1805.severity = warning | ||
|
||
# CA1810: Do not initialize unnecessarily | ||
dotnet_diagnostic.CA1810.severity = suggestion | ||
|
||
# CA1821: Remove empty Finalizers | ||
dotnet_diagnostic.CA1821.severity = warning | ||
|
||
# CA1822: Make member static | ||
dotnet_diagnostic.CA1822.severity = suggestion | ||
|
||
# CA1823: Avoid unused private fields | ||
dotnet_diagnostic.CA1823.severity = warning | ||
|
||
# CA1825: Avoid zero-length array allocations | ||
dotnet_diagnostic.CA1825.severity = warning | ||
|
||
# CA1826: Do not use Enumerable methods on indexable collections. Instead use the collection directly | ||
dotnet_diagnostic.CA1826.severity = warning | ||
|
||
# CA1827: Do not use Count() or LongCount() when Any() can be used | ||
dotnet_diagnostic.CA1827.severity = warning | ||
|
||
# CA1828: Do not use CountAsync() or LongCountAsync() when AnyAsync() can be used | ||
dotnet_diagnostic.CA1828.severity = warning | ||
|
||
# CA1829: Use Length/Count property instead of Count() when available | ||
dotnet_diagnostic.CA1829.severity = warning | ||
|
||
# CA1830: Prefer strongly-typed Append and Insert method overloads on StringBuilder | ||
dotnet_diagnostic.CA1830.severity = warning | ||
|
||
# CA1831: Use AsSpan or AsMemory instead of Range-based indexers when appropriate | ||
# CA1832: Use AsSpan or AsMemory instead of Range-based indexers when appropriate | ||
# CA1833: Use AsSpan or AsMemory instead of Range-based indexers when appropriate | ||
dotnet_diagnostic.CA1831.severity = warning | ||
dotnet_diagnostic.CA1832.severity = warning | ||
dotnet_diagnostic.CA1833.severity = warning | ||
|
||
# CA1834: Consider using 'StringBuilder.Append(char)' when applicable | ||
dotnet_diagnostic.CA1834.severity = warning | ||
|
||
# CA1835: Prefer the 'Memory'-based overloads for 'ReadAsync' and 'WriteAsync' | ||
dotnet_diagnostic.CA1835.severity = warning | ||
|
||
# CA1836: Prefer IsEmpty over Count | ||
dotnet_diagnostic.CA1836.severity = warning | ||
|
||
# CA1837: Use 'Environment.ProcessId' | ||
dotnet_diagnostic.CA1837.severity = warning | ||
|
||
# CA1838: Avoid 'StringBuilder' parameters for P/Invokes | ||
dotnet_diagnostic.CA1838.severity = warning | ||
|
||
# CA1839: Use 'Environment.ProcessPath' | ||
dotnet_diagnostic.CA1839.severity = warning | ||
|
||
# CA1840: Use 'Environment.CurrentManagedThreadId' | ||
dotnet_diagnostic.CA1840.severity = warning | ||
|
||
# CA1841: Prefer Dictionary.Contains methods | ||
dotnet_diagnostic.CA1841.severity = warning | ||
|
||
# CA1842: Do not use 'WhenAll' with a single task | ||
dotnet_diagnostic.CA1842.severity = warning | ||
|
||
# CA1843: Do not use 'WaitAll' with a single task | ||
dotnet_diagnostic.CA1843.severity = warning | ||
|
||
# CA1845: Use span-based 'string.Concat' | ||
dotnet_diagnostic.CA1845.severity = warning | ||
|
||
# CA1846: Prefer AsSpan over Substring | ||
dotnet_diagnostic.CA1846.severity = warning | ||
|
||
# CA2008: Do not create tasks without passing a TaskScheduler | ||
dotnet_diagnostic.CA2008.severity = warning | ||
|
||
# CA2009: Do not call ToImmutableCollection on an ImmutableCollection value | ||
dotnet_diagnostic.CA2009.severity = warning | ||
|
||
# CA2011: Avoid infinite recursion | ||
dotnet_diagnostic.CA2011.severity = warning | ||
|
||
# CA2012: Use ValueTask correctly | ||
dotnet_diagnostic.CA2012.severity = warning | ||
|
||
# CA2013: Do not use ReferenceEquals with value types | ||
dotnet_diagnostic.CA2013.severity = warning | ||
|
||
# CA2014: Do not use stackalloc in loops. | ||
dotnet_diagnostic.CA2014.severity = warning | ||
|
||
# CA2016: Forward the 'CancellationToken' parameter to methods that take one | ||
dotnet_diagnostic.CA2016.severity = warning | ||
|
||
# CA2200: Rethrow to preserve stack details | ||
dotnet_diagnostic.CA2200.severity = warning | ||
|
||
# CA2208: Instantiate argument exceptions correctly | ||
dotnet_diagnostic.CA2208.severity = warning | ||
|
||
# IDE0035: Remove unreachable code | ||
dotnet_diagnostic.IDE0035.severity = warning | ||
|
||
# IDE0036: Order modifiers | ||
csharp_preferred_modifier_order = public,private,protected,internal,static,extern,new,virtual,abstract,sealed,override,readonly,unsafe,volatile,async:suggestion | ||
dotnet_diagnostic.IDE0036.severity = warning | ||
|
||
# IDE0043: Format string contains invalid placeholder | ||
dotnet_diagnostic.IDE0043.severity = warning | ||
|
||
# IDE0044: Make field readonly | ||
dotnet_diagnostic.IDE0044.severity = warning | ||
|
||
# IDE0161: Convert to file-scoped namespace | ||
dotnet_diagnostic.IDE0161.severity = warning | ||
# CA1018: Mark attributes with AttributeUsageAttribute | ||
dotnet_diagnostic.CA1018.severity = suggestion | ||
# CA1507: Use nameof to express symbol names | ||
dotnet_diagnostic.CA1507.severity = suggestion | ||
# CA1802: Use literals where appropriate | ||
dotnet_diagnostic.CA1802.severity = suggestion | ||
# CA1805: Do not initialize unnecessarily | ||
dotnet_diagnostic.CA1805.severity = suggestion | ||
# CA1823: Avoid zero-length array allocations | ||
dotnet_diagnostic.CA1825.severity = suggestion | ||
# CA1826: Do not use Enumerable methods on indexable collections. Instead use the collection directly | ||
dotnet_diagnostic.CA1826.severity = suggestion | ||
# CA1827: Do not use Count() or LongCount() when Any() can be used | ||
dotnet_diagnostic.CA1827.severity = suggestion | ||
# CA1829: Use Length/Count property instead of Count() when available | ||
dotnet_diagnostic.CA1829.severity = suggestion | ||
# CA1834: Consider using 'StringBuilder.Append(char)' when applicable | ||
dotnet_diagnostic.CA1834.severity = suggestion | ||
# CA1835: Prefer the 'Memory'-based overloads for 'ReadAsync' and 'WriteAsync' | ||
dotnet_diagnostic.CA1835.severity = suggestion | ||
# CA1837: Use 'Environment.ProcessId' | ||
dotnet_diagnostic.CA1837.severity = suggestion | ||
# CA1838: Avoid 'StringBuilder' parameters for P/Invokes | ||
dotnet_diagnostic.CA1838.severity = suggestion | ||
# CA1841: Prefer Dictionary.Contains methods | ||
dotnet_diagnostic.CA1841.severity = suggestion | ||
# CA1844: Provide memory-based overrides of async methods when subclassing 'Stream' | ||
dotnet_diagnostic.CA1844.severity = suggestion | ||
# CA1845: Use span-based 'string.Concat' | ||
dotnet_diagnostic.CA1845.severity = suggestion | ||
# CA1846: Prefer AsSpan over Substring | ||
dotnet_diagnostic.CA1846.severity = suggestion | ||
# CA2008: Do not create tasks without passing a TaskScheduler | ||
dotnet_diagnostic.CA2008.severity = suggestion | ||
# CA2012: Use ValueTask correctly | ||
dotnet_diagnostic.CA2012.severity = suggestion | ||
# IDE0044: Make field readonly | ||
dotnet_diagnostic.IDE0044.severity = suggestion | ||
|
||
# CA2016: Forward the 'CancellationToken' parameter to methods that take one | ||
dotnet_diagnostic.CA2016.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
############################################################################### | ||
# Set default behavior to automatically normalize line endings. | ||
############################################################################### | ||
* text=auto | ||
|
||
############################################################################### | ||
# Set default behavior for command prompt diff. | ||
# | ||
# This is need for earlier builds of msysgit that does not have it on by | ||
# default for csharp files. | ||
# Note: This is only used by command line | ||
############################################################################### | ||
#*.cs diff=csharp | ||
|
||
############################################################################### | ||
# Set the merge driver for project and solution files | ||
# | ||
# Merging from the command prompt will add diff markers to the files if there | ||
# are conflicts (Merging from VS is not affected by the settings below, in VS | ||
# the diff markers are never inserted). Diff markers may cause the following | ||
# file extensions to fail to load in VS. An alternative would be to treat | ||
# these files as binary and thus will always conflict and require user | ||
# intervention with every merge. To do so, just uncomment the entries below | ||
############################################################################### | ||
#*.sln merge=binary | ||
#*.csproj merge=binary | ||
#*.vbproj merge=binary | ||
#*.vcxproj merge=binary | ||
#*.vcproj merge=binary | ||
#*.dbproj merge=binary | ||
#*.fsproj merge=binary | ||
#*.lsproj merge=binary | ||
#*.wixproj merge=binary | ||
#*.modelproj merge=binary | ||
#*.sqlproj merge=binary | ||
#*.wwaproj merge=binary | ||
|
||
############################################################################### | ||
# behavior for image files | ||
# | ||
# image files are treated as binary by default. | ||
############################################################################### | ||
#*.jpg binary | ||
#*.png binary | ||
#*.gif binary | ||
|
||
############################################################################### | ||
# diff behavior for common document formats | ||
# | ||
# Convert binary document formats to text before diffing them. This feature | ||
# is only available from the command line. Turn it on by uncommenting the | ||
# entries below. | ||
############################################################################### | ||
#*.doc diff=astextplain | ||
#*.DOC diff=astextplain | ||
#*.docx diff=astextplain | ||
#*.DOCX diff=astextplain | ||
#*.dot diff=astextplain | ||
#*.DOT diff=astextplain | ||
#*.pdf diff=astextplain | ||
#*.PDF diff=astextplain | ||
#*.rtf diff=astextplain | ||
#*.RTF diff=astextplain |
Oops, something went wrong.