Fix missing lines in editorconfig (#89)

This commit is contained in:
Adam Yoblick 2018-11-27 11:25:58 -06:00 коммит произвёл GitHub
Родитель aea6e4e029
Коммит 8ad24619ae
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 7 добавлений и 0 удалений

Просмотреть файл

@ -68,6 +68,13 @@ dotnet_naming_symbols.static_fields.required_modifiers = static
dotnet_naming_style.static_prefix_style.required_prefix = s_
dotnet_naming_style.static_prefix_style.capitalization = camel_case
# Comment this group and uncomment out the next group if you don't want _ prefixed fields.
# internal and private fields should be _camelCase
#dotnet_naming_rule.camel_case_for_private_internal_fields.severity = suggestion
#dotnet_naming_rule.camel_case_for_private_internal_fields.symbols = private_internal_fields
#dotnet_naming_rule.camel_case_for_private_internal_fields.style = camel_case_underscore_style
# internal and private fields should be _camelCase
dotnet_naming_rule.camel_case_for_private_internal_fields.severity = suggestion
dotnet_naming_rule.camel_case_for_private_internal_fields.symbols = private_internal_fields