forked from anegostudios/vsessentialsmod
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.editorconfig
More file actions
33 lines (26 loc) · 1.12 KB
/
Copy path.editorconfig
File metadata and controls
33 lines (26 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[*]
charset = utf-8
end_of_line = crlf
trim_trailing_whitespace = true
insert_final_newline = true
indent_style = space
indent_size = 4
tab_width = 4
[*.{yaml,yml,proto,sh}]
indent_size = 2
[*.cs]
max_line_length = off
### private Instance fields, properties are camelCase and start without _
dotnet_naming_rule.private_instance_fields_should_be_camel_case.severity = suggestion
dotnet_naming_rule.private_instance_fields_should_be_camel_case.symbols = private_instance_fields
dotnet_naming_rule.private_instance_fields_should_be_camel_case.style = instance_field_style
dotnet_naming_symbols.private_instance_fields.applicable_kinds = field, property
dotnet_naming_symbols.private_instance_fields.applicable_accessibilities = private, internal, protected, protected_internal, private_protected
dotnet_naming_style.instance_field_style.capitalization = camel_case
###
### Sonarlint specific, will only apply if you have sonarlint plugin installed
# S1104: Fields should not have public accessibility
dotnet_diagnostic.S1104.severity = none
###
# CA2241: Provide correct arguments to formatting methods
dotnet_diagnostic.CA2241.severity = error