OSDN Git Service

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