-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
71 lines (71 loc) · 2.27 KB
/
.eslintrc.json
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
// 🙏 参考: https://bps-tomoya.hateblo.jp/entry/2015/11/06/170000
{
"env": {
"browser": true,
"es2021": true,
"node": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
// 定数式による条件を警告
"no-constant-condition": 1,
// 情報が不十分な JSDoc を警告
"valid-jsdoc": [2, {
"requireReturn": false
}],
// alert メソッドを許可
"no-alert": 0,
// debugger メソッドを注意
"no-debugger": 1,
// 正規表現におけるスペースの利用を許可
"no-regex-spaces": 0,
// シングルクオートを強制
"quotes": [2, "single"],
// 厳密等価演算子を強制
"eqeqeq": 2,
// 連続スペースの許可
"no-multi-spaces": 0,
// ドット記法以外(ブランケット記法)を許可
"dot-notation": 0,
// strict 強制を緩和
"strict": 0,
// 末尾セミコロンを強制
"semi": [2, "always"],
// const or let を強制
"no-var": 2,
// 再代入がない限り const を強制
"prefer-const": 2,
// カンマ位置は末尾に強制
"comma-style": [2, "last"],
// カンマ前後のスペースを許可(垂直方向に統一されたインデントを得るため)
"comma-spacing": 0,
// インデントスタイルは4スペースに強制
"indent": [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": 2,
// ブロック開始前のスペースを強制
"space-before-blocks": 2
}
}