|
@@ -0,0 +1,46 @@
|
|
|
|
|
+# EditorConfig is awesome: https://EditorConfig.org
|
|
|
|
|
+
|
|
|
|
|
+# top-most EditorConfig file
|
|
|
|
|
+root = true
|
|
|
|
|
+
|
|
|
|
|
+[*]
|
|
|
|
|
+indent_style = space
|
|
|
|
|
+indent_size = 4
|
|
|
|
|
+end_of_line = crlf
|
|
|
|
|
+trim_trailing_whitespace = false
|
|
|
|
|
+insert_final_newline = false
|
|
|
|
|
+
|
|
|
|
|
+[*.{cs,vb}]
|
|
|
|
|
+dotnet_diagnostic.IDE0090.severity = none
|
|
|
|
|
+dotnet_diagnostic.IDE0020.severity = none
|
|
|
|
|
+dotnet_diagnostic.IDE0038.severity = none
|
|
|
|
|
+dotnet_diagnostic.IDE0044.severity = none
|
|
|
|
|
+dotnet_diagnostic.IDE0051.severity = none
|
|
|
|
|
+dotnet_diagnostic.CS1009.severity = none
|
|
|
|
|
+dotnet_diagnostic.IDE0056.severity = none
|
|
|
|
|
+dotnet_naming_rule.private_fields_underscored.symbols = private_fields
|
|
|
|
|
+dotnet_naming_rule.private_fields_underscored.style = underscored
|
|
|
|
|
+dotnet_naming_rule.private_fields_underscored.severity = error
|
|
|
|
|
+
|
|
|
|
|
+# Define the 'private_fields' symbol group:
|
|
|
|
|
+dotnet_naming_symbols.private_fields.applicable_kinds = field
|
|
|
|
|
+dotnet_naming_symbols.private_fields.applicable_accessibilities = private
|
|
|
|
|
+
|
|
|
|
|
+# Define the 'private_static_fields' symbol group
|
|
|
|
|
+dotnet_naming_symbols.private_static_fields.applicable_kinds = field
|
|
|
|
|
+dotnet_naming_symbols.private_static_fields.applicable_accessibilities = private
|
|
|
|
|
+dotnet_naming_symbols.private_static_fields.required_modifiers = static
|
|
|
|
|
+
|
|
|
|
|
+# Define the 'underscored' naming style
|
|
|
|
|
+dotnet_naming_style.underscored.capitalization = camel_case
|
|
|
|
|
+dotnet_naming_style.underscored.required_prefix = _
|
|
|
|
|
+
|
|
|
|
|
+# Define the 'private_fields_underscored' naming rule
|
|
|
|
|
+dotnet_naming_rule.private_fields_underscored.symbols = private_fields
|
|
|
|
|
+dotnet_naming_rule.private_fields_underscored.style = underscored
|
|
|
|
|
+dotnet_naming_rule.private_fields_underscored.severity = warning
|
|
|
|
|
+
|
|
|
|
|
+# Define the 'private_static_fields_none' naming rule
|
|
|
|
|
+dotnet_naming_rule.private_static_fields_none.symbols = private_static_fields
|
|
|
|
|
+dotnet_naming_rule.private_static_fields_none.style = underscored
|
|
|
|
|
+dotnet_naming_rule.private_static_fields_none.severity = none
|