-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.editorconfig
More file actions
49 lines (45 loc) · 3.42 KB
/
.editorconfig
File metadata and controls
49 lines (45 loc) · 3.42 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
root = true
[*]
indent_style = space
indent_size = 4
end_of_line = crlf
[*.{csproj,props,json}]
indent_size = 2
[*.cs]
dotnet_diagnostic.CA1303.severity = none # Do not pass literals as localized parameters
dotnet_diagnostic.SA1009.severity = none # Closing parenthesis should be spaced correctly
dotnet_diagnostic.SA1101.severity = none # Prefix local calls with this
dotnet_diagnostic.SA1111.severity = none # Closing parenthesis should be on line of last parameter
dotnet_diagnostic.SA1114.severity = none # Parameter list should follow declaration
dotnet_diagnostic.SA1115.severity = none # Parameter should follow comma
dotnet_diagnostic.SA1116.severity = none # Split parameters should start on line after declaration
dotnet_diagnostic.SA1118.severity = none # Parameter should not span multiple lines
dotnet_diagnostic.SA1200.severity = none # Using directives should be placed correctly
dotnet_diagnostic.SA1201.severity = none # Elements should appear in the correct order
dotnet_diagnostic.SA1202.severity = none # Elements should be ordered by access
dotnet_diagnostic.SA1204.severity = none # Static elements should appear before instance elements
dotnet_diagnostic.SA1208.severity = none # System using directives should be placed before other using directives
dotnet_diagnostic.SA1210.severity = none # Using directives should be ordered alphabetically by namespace
dotnet_diagnostic.SA1214.severity = none # Readonly fields should appear before non-readonly fields
dotnet_diagnostic.SA1402.severity = none # File may only contain a single type
dotnet_diagnostic.SA1500.severity = none # Braces for multi-line statements should not share line
dotnet_diagnostic.SA1501.severity = none # Statement should not be on a single line
dotnet_diagnostic.SA1502.severity = none # Element should not be on a single line
dotnet_diagnostic.SA1503.severity = none # Braces should not be omitted
dotnet_diagnostic.SA1504.severity = none # All accessors should be single-line or multi-line
dotnet_diagnostic.SA1512.severity = none # Single-line comments should not be followed by blank line
dotnet_diagnostic.SA1513.severity = none # Closing brace should be followed by blank line
dotnet_diagnostic.SA1515.severity = none # Single-line comment should be preceded by blank line
dotnet_diagnostic.SA1516.severity = none # Elements should be separated by blank line
dotnet_diagnostic.SA1600.severity = none # Elements should be documented
dotnet_diagnostic.SA1602.severity = none # Enumeration items should be documented
dotnet_diagnostic.SA1604.severity = none # Element documentation should have summary
dotnet_diagnostic.SA1611.severity = none # Element parameters should be documented
dotnet_diagnostic.SA1615.severity = none # Element return value should be documented
dotnet_diagnostic.SA1616.severity = none # Element return value documentation should have text
dotnet_diagnostic.SA1618.severity = none # Generic type parameters should be documented
dotnet_diagnostic.SA1623.severity = none # Property summary documentation should match accessors
dotnet_diagnostic.SA1624.severity = none # Property summary documentation should omit accessor with restricted access
dotnet_diagnostic.SA1633.severity = none # File should have header
dotnet_diagnostic.SA1642.severity = none # Constructor summary documentation should begin with standard text
dotnet_diagnostic.SA1643.severity = none # Destructor summary documentation should begin with standard text