-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
98 lines (80 loc) · 4.05 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
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
{
"extends": [
"eslint:recommended" // お好きなESLint設定をここに
],
"plugins": [ "@typescript-eslint" ],
"parser": "@typescript-eslint/parser",
"env": {
"es6": true,
"browser": true
},
"rules": {
// https://github.com/typescript-eslint/typescript-eslint/blob/ecc96318f47d821c19513652f262b47b15fd8257/packages/eslint-plugin/src/configs/recommended.json
"@typescript-eslint/adjacent-overload-signatures": "error",
"@typescript-eslint/array-type": "error",
"@typescript-eslint/ban-types": "error",
"camelcase": "off",
"@typescript-eslint/camelcase": "error",
"@typescript-eslint/class-name-casing": "error",
"@typescript-eslint/explicit-function-return-type": "warn",
"@typescript-eslint/explicit-member-accessibility": "error",
"indent": "off",
"@typescript-eslint/indent": "error",
// インタフェースにプレフィクス"I"があること
"@typescript-eslint/interface-name-prefix": [ "error", "always" ],
"@typescript-eslint/member-delimiter-style": "error",
"@typescript-eslint/no-angle-bracket-type-assertion": "error",
"no-array-constructor": "off",
"@typescript-eslint/no-array-constructor": "error",
"@typescript-eslint/no-empty-interface": "error",
//"@typescript-eslint/no-explicit-any": "warn",
"@typescript-eslint/no-inferrable-types": "error",
"@typescript-eslint/no-misused-new": "error",
"@typescript-eslint/no-namespace": "error",
"@typescript-eslint/no-non-null-assertion": "error",
"@typescript-eslint/no-object-literal-type-assertion": "error",
"@typescript-eslint/no-parameter-properties": "error",
"@typescript-eslint/no-triple-slash-reference": "error",
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "warn",
"@typescript-eslint/no-use-before-define": "error",
"@typescript-eslint/no-var-requires": "error",
"@typescript-eslint/prefer-interface": "error",
"@typescript-eslint/prefer-namespace-keyword": "error",
"@typescript-eslint/type-annotation-spacing": "error",
// 以下、独自ルール
// ルール定義参考:https://garafu.blogspot.com/2017/02/eslint-rules-jp.html
// カンマ前には空白を入れず、カンマ後には空白を入れること
"comma-spacing": "error",
// 関数を呼び出す際、関数名と丸括弧の間に空白を入れないこと
"func-call-spacing": "error",
// オブジェクトリテラルにおいてキーとバリューの間に空白を入れること
"key-spacing": "error",
// JavaScript キーワード の前後には空白を入れること
"keyword-spacing": "error",
// 改行は LF (line feed) になっていること
"linebreak-style": "error",
// ブロックコメントの前には空行を入れること
"lines-around-comment": "error",
// ネストできるブロック深さは4つ以内とすること
"max-depth": "error",
// return の前には空行を入れること
"newline-before-return": "error",
//メソッドチェーンを利用する場合、チェーン毎に改行すること
"newline-per-chained-call": "error",
// インデントにタブと空白を混在させないこと
"no-mixed-spaces-and-tabs": "error",
// 3行以上の連続した空行を作らないこと
"no-multiple-empty-lines": "error",
// var (メソットスコープ変数) は使わず let または const (ブロックスコープ変数) を使うこと
"no-var": "error",
// 3項演算子は複数行に分けて記述すること
"multiline-ternary": "error",
// クォートはシングルクォートを使う。
"quotes": [ "error", "single" ]
},
"parserOptions": {
"sourceType": "module",
"project": "./tsconfig.test.json"
}
}