回答編集履歴
8
修正
test
CHANGED
@@ -14,15 +14,17 @@
|
|
14
14
|
|
15
15
|
|
16
16
|
|
17
|
-
St
|
17
|
+
・Visual Studio 2019についている、ESLintの機能を使うとjavascriptのおかしな部分を指摘してくれました。
|
18
18
|
|
19
19
|
|
20
20
|
|
21
|
-
|
21
|
+
・NugetのStyleCop.Analyzerもコードチェックで使える。
|
22
22
|
|
23
|
+
.editorconfig の設定はこのようにしました。警告を無視する番号を指定しています。
|
23
24
|
|
25
|
+
※StyleCop.Analyzerの警告を1つずつ見て、どれが不要かを判断したら
|
24
26
|
|
25
|
-
|
27
|
+
私のケースでは以下のような感じになりました。
|
26
28
|
|
27
29
|
|
28
30
|
|
7
修正
test
CHANGED
@@ -18,7 +18,11 @@
|
|
18
18
|
|
19
19
|
|
20
20
|
|
21
|
-
私の.editorconfig の設定はこうしました。
|
21
|
+
私の.editorconfig の設定はこのようにしました。警告を無視する番号を指定しています。
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
StyleCop.Analyzerの警告を1つずつ見てどれが不要かを判断してみましたら以下のような感じになりました。
|
22
26
|
|
23
27
|
|
24
28
|
|
@@ -28,17 +32,13 @@
|
|
28
32
|
|
29
33
|
dotnet_diagnostic.SA0001.severity = none
|
30
34
|
|
31
|
-
dotnet_diagnostic.SA1009.severity = none
|
32
|
-
|
33
|
-
dotnet_diagnostic.SA1025.severity = none
|
34
35
|
|
35
36
|
|
37
|
+
dotnet_diagnostic.SA1009.severity = none
|
36
38
|
|
37
39
|
dotnet_diagnostic.SA1101.severity = none
|
38
40
|
|
39
41
|
dotnet_diagnostic.SA1111.severity = none
|
40
|
-
|
41
|
-
dotnet_diagnostic.SA1113.severity = none
|
42
42
|
|
43
43
|
dotnet_diagnostic.SA1118.severity = none
|
44
44
|
|
@@ -60,8 +60,6 @@
|
|
60
60
|
|
61
61
|
dotnet_diagnostic.SA1201.severity = none
|
62
62
|
|
63
|
-
dotnet_diagnostic.SA1202.severity = none
|
64
|
-
|
65
63
|
dotnet_diagnostic.SA1203.severity = none
|
66
64
|
|
67
65
|
dotnet_diagnostic.SA1208.severity = none
|
@@ -69,8 +67,6 @@
|
|
69
67
|
dotnet_diagnostic.SA1214.severity = none
|
70
68
|
|
71
69
|
|
72
|
-
|
73
|
-
dotnet_diagnostic.SA1307.severity = none
|
74
70
|
|
75
71
|
dotnet_diagnostic.SA1309.severity = none
|
76
72
|
|
@@ -80,10 +76,6 @@
|
|
80
76
|
|
81
77
|
dotnet_diagnostic.SA1400.severity = none
|
82
78
|
|
83
|
-
dotnet_diagnostic.SA1401.severity = none
|
84
|
-
|
85
|
-
dotnet_diagnostic.SA1402.severity = none
|
86
|
-
|
87
79
|
dotnet_diagnostic.SA1413.severity = none
|
88
80
|
|
89
81
|
|
@@ -92,13 +84,7 @@
|
|
92
84
|
|
93
85
|
dotnet_diagnostic.SA1505.severity = none
|
94
86
|
|
95
|
-
dotnet_diagnostic.SA1507.severity = none
|
96
|
-
|
97
87
|
dotnet_diagnostic.SA1512.severity = none
|
98
|
-
|
99
|
-
dotnet_diagnostic.SA1513.severity = none
|
100
|
-
|
101
|
-
dotnet_diagnostic.SA1516.severity = none
|
102
88
|
|
103
89
|
|
104
90
|
|
@@ -138,6 +124,4 @@
|
|
138
124
|
|
139
125
|
dotnet_diagnostic.SA1650.severity = none
|
140
126
|
|
141
|
-
|
142
|
-
|
143
127
|
```
|
6
修正
test
CHANGED
@@ -26,7 +26,11 @@
|
|
26
26
|
|
27
27
|
### StyleCop Ignore ###
|
28
28
|
|
29
|
+
dotnet_diagnostic.SA0001.severity = none
|
30
|
+
|
29
31
|
dotnet_diagnostic.SA1009.severity = none
|
32
|
+
|
33
|
+
dotnet_diagnostic.SA1025.severity = none
|
30
34
|
|
31
35
|
|
32
36
|
|
@@ -36,17 +40,19 @@
|
|
36
40
|
|
37
41
|
dotnet_diagnostic.SA1113.severity = none
|
38
42
|
|
43
|
+
dotnet_diagnostic.SA1118.severity = none
|
44
|
+
|
39
45
|
dotnet_diagnostic.SA1119.severity = none
|
46
|
+
|
47
|
+
dotnet_diagnostic.SA1121.severity = none
|
48
|
+
|
49
|
+
dotnet_diagnostic.SA1122.severity = none
|
50
|
+
|
51
|
+
dotnet_diagnostic.SA1129.severity = none
|
40
52
|
|
41
53
|
dotnet_diagnostic.SA1131.severity = none
|
42
54
|
|
43
55
|
dotnet_diagnostic.SA1133.severity = none
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
dotnet_diagnostic.SA1121.severity = none
|
48
|
-
|
49
|
-
dotnet_diagnostic.SA1122.severity = none
|
50
56
|
|
51
57
|
|
52
58
|
|
@@ -56,7 +62,11 @@
|
|
56
62
|
|
57
63
|
dotnet_diagnostic.SA1202.severity = none
|
58
64
|
|
65
|
+
dotnet_diagnostic.SA1203.severity = none
|
66
|
+
|
59
67
|
dotnet_diagnostic.SA1208.severity = none
|
68
|
+
|
69
|
+
dotnet_diagnostic.SA1214.severity = none
|
60
70
|
|
61
71
|
|
62
72
|
|
@@ -67,6 +77,8 @@
|
|
67
77
|
dotnet_diagnostic.SA1310.severity = none
|
68
78
|
|
69
79
|
|
80
|
+
|
81
|
+
dotnet_diagnostic.SA1400.severity = none
|
70
82
|
|
71
83
|
dotnet_diagnostic.SA1401.severity = none
|
72
84
|
|
@@ -126,4 +138,6 @@
|
|
126
138
|
|
127
139
|
dotnet_diagnostic.SA1650.severity = none
|
128
140
|
|
141
|
+
|
142
|
+
|
129
143
|
```
|
5
修正
test
CHANGED
@@ -22,9 +22,13 @@
|
|
22
22
|
|
23
23
|
|
24
24
|
|
25
|
-
```
|
25
|
+
```txt
|
26
|
+
|
27
|
+
### StyleCop Ignore ###
|
26
28
|
|
27
29
|
dotnet_diagnostic.SA1009.severity = none
|
30
|
+
|
31
|
+
|
28
32
|
|
29
33
|
dotnet_diagnostic.SA1101.severity = none
|
30
34
|
|
@@ -34,13 +38,27 @@
|
|
34
38
|
|
35
39
|
dotnet_diagnostic.SA1119.severity = none
|
36
40
|
|
41
|
+
dotnet_diagnostic.SA1131.severity = none
|
42
|
+
|
43
|
+
dotnet_diagnostic.SA1133.severity = none
|
44
|
+
|
45
|
+
|
46
|
+
|
37
47
|
dotnet_diagnostic.SA1121.severity = none
|
38
48
|
|
39
49
|
dotnet_diagnostic.SA1122.severity = none
|
40
50
|
|
51
|
+
|
52
|
+
|
41
53
|
dotnet_diagnostic.SA1200.severity = none
|
42
54
|
|
55
|
+
dotnet_diagnostic.SA1201.severity = none
|
56
|
+
|
57
|
+
dotnet_diagnostic.SA1202.severity = none
|
58
|
+
|
43
59
|
dotnet_diagnostic.SA1208.severity = none
|
60
|
+
|
61
|
+
|
44
62
|
|
45
63
|
dotnet_diagnostic.SA1307.severity = none
|
46
64
|
|
@@ -48,17 +66,29 @@
|
|
48
66
|
|
49
67
|
dotnet_diagnostic.SA1310.severity = none
|
50
68
|
|
69
|
+
|
70
|
+
|
51
71
|
dotnet_diagnostic.SA1401.severity = none
|
52
72
|
|
53
73
|
dotnet_diagnostic.SA1402.severity = none
|
54
74
|
|
55
75
|
dotnet_diagnostic.SA1413.severity = none
|
56
76
|
|
77
|
+
|
78
|
+
|
57
79
|
dotnet_diagnostic.SA1500.severity = none
|
58
80
|
|
59
81
|
dotnet_diagnostic.SA1505.severity = none
|
60
82
|
|
83
|
+
dotnet_diagnostic.SA1507.severity = none
|
84
|
+
|
85
|
+
dotnet_diagnostic.SA1512.severity = none
|
86
|
+
|
87
|
+
dotnet_diagnostic.SA1513.severity = none
|
88
|
+
|
61
89
|
dotnet_diagnostic.SA1516.severity = none
|
90
|
+
|
91
|
+
|
62
92
|
|
63
93
|
dotnet_diagnostic.SA1600.severity = none
|
64
94
|
|
4
修正
test
CHANGED
@@ -14,4 +14,86 @@
|
|
14
14
|
|
15
15
|
|
16
16
|
|
17
|
-
StyleCop
|
17
|
+
StyleCop.Analyzerもコードチェックで使えるかもしれない。
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
私の.editorconfig の設定はこうしました。
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
```C#
|
26
|
+
|
27
|
+
dotnet_diagnostic.SA1009.severity = none
|
28
|
+
|
29
|
+
dotnet_diagnostic.SA1101.severity = none
|
30
|
+
|
31
|
+
dotnet_diagnostic.SA1111.severity = none
|
32
|
+
|
33
|
+
dotnet_diagnostic.SA1113.severity = none
|
34
|
+
|
35
|
+
dotnet_diagnostic.SA1119.severity = none
|
36
|
+
|
37
|
+
dotnet_diagnostic.SA1121.severity = none
|
38
|
+
|
39
|
+
dotnet_diagnostic.SA1122.severity = none
|
40
|
+
|
41
|
+
dotnet_diagnostic.SA1200.severity = none
|
42
|
+
|
43
|
+
dotnet_diagnostic.SA1208.severity = none
|
44
|
+
|
45
|
+
dotnet_diagnostic.SA1307.severity = none
|
46
|
+
|
47
|
+
dotnet_diagnostic.SA1309.severity = none
|
48
|
+
|
49
|
+
dotnet_diagnostic.SA1310.severity = none
|
50
|
+
|
51
|
+
dotnet_diagnostic.SA1401.severity = none
|
52
|
+
|
53
|
+
dotnet_diagnostic.SA1402.severity = none
|
54
|
+
|
55
|
+
dotnet_diagnostic.SA1413.severity = none
|
56
|
+
|
57
|
+
dotnet_diagnostic.SA1500.severity = none
|
58
|
+
|
59
|
+
dotnet_diagnostic.SA1505.severity = none
|
60
|
+
|
61
|
+
dotnet_diagnostic.SA1516.severity = none
|
62
|
+
|
63
|
+
dotnet_diagnostic.SA1600.severity = none
|
64
|
+
|
65
|
+
dotnet_diagnostic.SA1601.severity = none
|
66
|
+
|
67
|
+
dotnet_diagnostic.SA1602.severity = none
|
68
|
+
|
69
|
+
dotnet_diagnostic.SA1623.severity = none
|
70
|
+
|
71
|
+
dotnet_diagnostic.SA1624.severity = none
|
72
|
+
|
73
|
+
dotnet_diagnostic.SA1629.severity = none
|
74
|
+
|
75
|
+
dotnet_diagnostic.SA1630.severity = none
|
76
|
+
|
77
|
+
dotnet_diagnostic.SA1631.severity = none
|
78
|
+
|
79
|
+
dotnet_diagnostic.SA1633.severity = none
|
80
|
+
|
81
|
+
dotnet_diagnostic.SA1635.severity = none
|
82
|
+
|
83
|
+
dotnet_diagnostic.SA1637.severity = none
|
84
|
+
|
85
|
+
dotnet_diagnostic.SA1638.severity = none
|
86
|
+
|
87
|
+
dotnet_diagnostic.SA1639.severity = none
|
88
|
+
|
89
|
+
dotnet_diagnostic.SA1640.severity = none
|
90
|
+
|
91
|
+
dotnet_diagnostic.SA1642.severity = none
|
92
|
+
|
93
|
+
dotnet_diagnostic.SA1643.severity = none
|
94
|
+
|
95
|
+
dotnet_diagnostic.SA1649.severity = none
|
96
|
+
|
97
|
+
dotnet_diagnostic.SA1650.severity = none
|
98
|
+
|
99
|
+
```
|
3
修正
test
CHANGED
@@ -8,7 +8,7 @@
|
|
8
8
|
|
9
9
|
|
10
10
|
|
11
|
-
テスト前であれば目視で確認する
|
11
|
+
テスト前であれば目視で確認する。
|
12
12
|
|
13
13
|
すでに稼働中のものであれば触らない。
|
14
14
|
|
2
修正
test
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
|
5
5
|
①タイプとメソッド名が合わない時
|
6
6
|
|
7
|
-
②タイプがリスト等の複数の時(Listなど)、変数名がsで終わっていること
|
7
|
+
②タイプがリスト等の複数の時(Listなど)、変数名がsで終わっていること
|
8
8
|
|
9
9
|
|
10
10
|
|
1
修正
test
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
以下の方法は現実的でない
|
1
|
+
以下の方法は現実的でない。
|
2
2
|
|
3
3
|
|
4
4
|
|
@@ -8,6 +8,10 @@
|
|
8
8
|
|
9
9
|
|
10
10
|
|
11
|
+
テスト前であれば目視で確認する程度にする。
|
12
|
+
|
13
|
+
すでに稼働中のものであれば触らない。
|
11
14
|
|
12
15
|
|
16
|
+
|
13
|
-
|
17
|
+
StyleCop等もコードチェックで使えるかもしれない。
|