Created
June 2, 2021 07:49
-
-
Save d-oit/0b32e00479b5854aeb80084f5521cced to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| # Remove the line below if you want to inherit .editorconfig settings from higher directories | |
| root = true | |
| # C# files | |
| [*.cs] | |
| #### Core EditorConfig Options #### | |
| # Indentation and spacing | |
| indent_size = 4 | |
| indent_style = space | |
| tab_width = 4 | |
| # New line preferences | |
| end_of_line = crlf | |
| insert_final_newline = false | |
| #### .NET Coding Conventions #### | |
| # Organize usings | |
| dotnet_separate_import_directive_groups = false | |
| dotnet_sort_system_directives_first = false | |
| file_header_template = unset | |
| [*.{cs,vb}] | |
| dotnet_naming_rule.private_members_with_underscore.symbols = private_fields | |
| dotnet_naming_rule.private_members_with_underscore.style = prefix_underscore | |
| dotnet_naming_rule.private_members_with_underscore.severity = suggestion | |
| dotnet_naming_symbols.private_fields.applicable_kinds = field | |
| dotnet_naming_symbols.private_fields.applicable_accessibilities = private | |
| dotnet_naming_symbols.private_fields.required_modifiers = readonly | |
| dotnet_naming_style.prefix_underscore.capitalization = camel_case | |
| dotnet_naming_style.prefix_underscore.required_prefix = _ | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment