OSDN Git Service

OpenTween v2.6.0 リリース
[opentween/open-tween.git] / .editorconfig
1 [*.cs]
2 indent_style = space
3 tab_width = 4
4
5 # StyleCop.Analyzer
6
7 # SA0001: XML comment analysis is disabled due to project configuration
8 dotnet_diagnostic.SA0001.severity = none
9
10 # SA1009: Closing parenthesis should not be preceded by a space
11 dotnet_diagnostic.SA1009.severity = none
12
13 # SA1100: Do not prefix calls with base unless local implementation exists
14 dotnet_diagnostic.SA1100.severity = none
15
16 # SA1108: Block statements should not contain embedded comments
17 dotnet_diagnostic.SA1108.severity = none
18
19 # SA1111: Closing parenthesis should be on line of last parameter
20 dotnet_diagnostic.SA1111.severity = none
21
22 # SA1114: Parameter list should follow declaration
23 dotnet_diagnostic.SA1114.severity = none
24
25 # SA1115: The parameter should begin on the line after the previous parameter
26 dotnet_diagnostic.SA1115.severity = none
27
28 # SA1116: The parameters should begin on the line after the declaration, whenever the parameter span across multiple lines
29 dotnet_diagnostic.SA1116.severity = none
30
31 # SA1122:Use string.Empty for empty strings
32 dotnet_diagnostic.SA1122.severity = none
33
34 # SA1124: Do not use regions
35 dotnet_diagnostic.SA1124.severity = none
36
37 # SA1129: Do not use default value type constructor
38 dotnet_diagnostic.SA1129.severity = none
39
40 # SA1201: Elements must appear in the correct order
41 dotnet_diagnostic.SA1201.severity = none
42
43 # SA1202: Elements must be ordered by access
44 dotnet_diagnostic.SA1202.severity = none
45
46 # SA1203: Constants must appear before fields
47 dotnet_diagnostic.SA1203.severity = none
48
49 # SA1204: Static members should appear before non-static members
50 dotnet_diagnostic.SA1204.severity = none
51
52 # SA1214: Readonly fields should appear before non-readonly fields
53 dotnet_diagnostic.SA1214.severity = none
54
55 # SA1401: Field should be private
56 dotnet_diagnostic.SA1401.severity = none
57
58 # SA1402: File may only contain a single type
59 dotnet_diagnostic.SA1402.severity = none
60
61 # SA1404: Code analysis suppression should have justification
62 dotnet_diagnostic.SA1404.severity = none
63
64 # SA1407: Arithmetic expressions should declare precedence
65 dotnet_diagnostic.SA1407.severity = none
66
67 # SA1408: Conditional expressions should declare precedence
68 dotnet_diagnostic.SA1408.severity = none
69
70 # SA1503: Braces should not be omitted
71 dotnet_diagnostic.SA1503.severity = none
72
73 # SA1512: Single-line comments should not be followed by blank line
74 dotnet_diagnostic.SA1512.severity = none
75
76 # SA1513: Closing brace should be followed by blank line
77 dotnet_diagnostic.SA1513.severity = none
78
79 # SA1515: Single-line comment should be preceded by blank line
80 dotnet_diagnostic.SA1515.severity = none
81
82 # SA1623: PropertySummaryDocumentation must match accessors
83 dotnet_diagnostic.SA1623.severity = none
84
85 # SA1627: The documentation text within the 'exception' tag should not be empty
86 dotnet_diagnostic.SA1627.severity = none
87
88 # SA1629: Documentation text should end with a period
89 dotnet_diagnostic.SA1629.severity = none
90
91 # SA1633: The file header XML is invalid
92 dotnet_diagnostic.SA1633.severity = none
93
94 # conflict with StyleCop rules
95 dotnet_style_qualification_for_field = true
96 dotnet_style_qualification_for_property = true
97 dotnet_style_qualification_for_method = true
98 dotnet_style_qualification_for_event = true