-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
104 lines (80 loc) · 2.71 KB
/
.eslintrc
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"parser": "babel-eslint",
"extends": "eslint:recommended",
"env": {
"es6": true,
"node": true,
"mocha": true
},
"rules": {
// 定数式による条件を警告
"no-constant-condition": 1,
// 情報が不十分な JSDoc を警告
// "valid-jsdoc": [2, {
// "requireReturn": false
// }],
// console メソッドを注意
"no-console": 0,
// alert メソッドを許可
"no-alert": 2,
// debugger メソッドを注意
"no-debugger": 1,
// 正規表現におけるスペースの利用を許可
"no-regex-spaces": 1,
// シングルクオートを強制
"quotes": [2, "single"],
// 厳密等価演算子を強制
"eqeqeq": 2,
// 連続スペースの許可
"no-multi-spaces": 0,
// ドット記法以外(ブランケット記法)を許可
"dot-notation": 0,
// 末尾セミコロンを付けない
// "semi": [2, "never"],
// const or let を強制
"no-var": 2,
// 再代入がない限り const を強制
"prefer-const": 1,
// カンマ位置は末尾に強制
"comma-style": [2, "last"],
// カンマ前後のスペースを許可(垂直方向に統一されたインデントを得るため)
"comma-spacing": 0,
// インデントスタイルは2スペースに強制
"indent-legacy": [2, 2, {
'SwitchCase': 1,
}],
// Key:Value におけるコロン前スペースなし、コロン後1スペースを強制
"key-spacing": [2, {
"beforeColon": false,
"afterColon" : true
// 垂直方向にコロン記号を揃えるためのコロン前スペースを強制
// "align" : "colon"
}],
// 連続した空行を注意
"no-multiple-empty-lines": [1, { "max": 1 }],
// 関数呼び出しの際のスペースを禁止
"no-spaced-func": 1,
// return, throw,case 句の後のスペースを強制
"keyword-spacing": 1,
// ブロック開始前のスペースを強制
"space-before-blocks": 2,
"arrow-body-style": 1,
"arrow-parens": "error",
"arrow-spacing": "error",
"generator-star-spacing": "error",
"no-duplicate-imports": "error",
"no-useless-computed-key": "error",
"no-useless-constructor": "error",
"no-useless-rename": "error",
"object-shorthand": "error",
// thisを含まないcallback的なfunctionはarrowに置き換える
// 予防的・意味合い的にfunctionを使う場合があるのでx
"prefer-arrow-callback": 0,
"prefer-rest-params": "error",
"prefer-spread": "error",
"prefer-template": "error",
"rest-spread-spacing": "error",
"template-curly-spacing": "error",
"yield-star-spacing": "error"
}
}