-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.editorconfig
More file actions
88 lines (59 loc) · 2.96 KB
/
.editorconfig
File metadata and controls
88 lines (59 loc) · 2.96 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
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[*.cs]
# SA1652: Enable XML documentation output
dotnet_diagnostic.SA1652.severity = suggestion
# SA1633: The file header is missing or not located at the top of the file.
dotnet_diagnostic.SA1633.severity = suggestion
# SA1502: Element must not be on a single line
dotnet_diagnostic.SA1502.severity = suggestion
# SA1028: Code must not contain trailing whitespace
dotnet_diagnostic.SA1028.severity = suggestion
# SA1208: Using directive for 'System.Threading.Tasks' must appear before directive for 'AskTheCode.SmtLibStandard.Handles'
dotnet_diagnostic.SA1208.severity = suggestion
# SA1649: File name must match first type name.
dotnet_diagnostic.SA1649.severity = suggestion
# SA1005: Single line comment must begin with a space.
dotnet_diagnostic.SA1005.severity = suggestion
# SA1512: Single-line comments must not be followed by blank line
dotnet_diagnostic.SA1512.severity = suggestion
# SA1507: Code must not contain multiple blank lines in a row
dotnet_diagnostic.SA1507.severity = suggestion
# SA1402: File may only contain a single class
dotnet_diagnostic.SA1402.severity = suggestion
# SA1119: Statement must not use unnecessary parenthesis
dotnet_diagnostic.SA1119.severity = suggestion
# SA1505: An opening brace must not be followed by a blank line.
dotnet_diagnostic.SA1505.severity = suggestion
# SA1401: Field must be private
dotnet_diagnostic.SA1401.severity = suggestion
# SA1122: Use string.Empty for empty strings
dotnet_diagnostic.SA1122.severity = suggestion
# SA1202: 'public' members must come before 'private' members
dotnet_diagnostic.SA1202.severity = suggestion
# SA1515: Single-line comment must be preceded by blank line
dotnet_diagnostic.SA1515.severity = suggestion
# SA1407: Arithmetic expressions must declare precedence
dotnet_diagnostic.SA1407.severity = suggestion
# SA1615: Element return value must be documented
dotnet_diagnostic.SA1615.severity = suggestion
# SA1618: Generic type parameters must be documented
dotnet_diagnostic.SA1618.severity = suggestion
# SA1302: Interface names must begin with I
dotnet_diagnostic.SA1302.severity = suggestion
# SA1115: Parameter must follow comma
dotnet_diagnostic.SA1115.severity = suggestion
# SA1009: Closing parenthesis must be spaced correctly
dotnet_diagnostic.SA1009.severity = suggestion
# SA1111: Closing parenthesis must be on line of last parameter
dotnet_diagnostic.SA1111.severity = suggestion
# SA1307: Accessible fields must begin with upper-case letter
dotnet_diagnostic.SA1307.severity = suggestion
# SA1201: A field should not follow a class
dotnet_diagnostic.SA1201.severity = suggestion
# SA1204: Static members must appear before non-static members
dotnet_diagnostic.SA1204.severity = suggestion
# SA1101: Prefix local calls with this
dotnet_diagnostic.SA1101.severity = suggestion
# SA1518: Code must not contain blank lines at the end of the file
dotnet_diagnostic.SA1518.severity = suggestion
# SA1513: Closing brace must be followed by blank line
dotnet_diagnostic.SA1513.severity = suggestion