Skip to content

Instantly share code, notes, and snippets.

@mslot
Created April 27, 2019 18:53
Show Gist options
  • Save mslot/423e6796464ec2f55094902b27b52662 to your computer and use it in GitHub Desktop.
Save mslot/423e6796464ec2f55094902b27b52662 to your computer and use it in GitHub Desktop.
Basic editorconfig
[*.{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_style.prefix_underscore.capitalization = camel_case
dotnet_naming_style.prefix_underscore.required_prefix = _
indent_style = space
indent_size = 4
tab_width = 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment