-
Notifications
You must be signed in to change notification settings - Fork 0
/
.editorconfig
62 lines (44 loc) · 1.54 KB
/
.editorconfig
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# https://editorconfig.org/
root = true
[*]
insert_final_newline = true
indent_style = space
indent_size = 2
trim_trailing_whitespace = true
[TeachingRecordSystem/**]
charset = utf-8
[Makefile]
indent_style = tab
indent_size = 2
[*.tsv]
indent_style = tab
[*.ps1]
indent_size = 4
[*.sql]
indent_size = 4
[*.cs]
indent_size = 4
dotnet_diagnostic.IDE0005.severity = error
dotnet_diagnostic.VSTHRD003.severity = none
dotnet_diagnostic.VSTHRD103.severity = none
dotnet_diagnostic.VSTHRD105.severity = none
dotnet_naming_rule.const_fields.symbols = const_fields
dotnet_naming_rule.const_fields.style = pascal_case
dotnet_naming_rule.const_fields.severity = suggestion
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.const_fields.applicable_kinds = field
dotnet_naming_symbols.const_fields.required_modifiers = const
dotnet_naming_style.prefix_underscore.capitalization = camel_case
dotnet_naming_style.prefix_underscore.required_prefix = _
dotnet_naming_style.pascal_case.capitalization = pascal_case
dotnet_sort_system_directives_first = true
csharp_style_namespace_declarations = file_scoped:warning
csharp_prefer_braces = true:warning
[*.cshtml]
indent_size = 4
[TeachingRecordSystem/src/**/Migrations/*]
generated_code = true