-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
180 lines (166 loc) · 4.67 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
{
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"plugin:jsx-a11y/recommended",
"next/core-web-vitals",
"prettier",
"plugin:storybook/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
},
"plugins": [
"react",
"import",
"unused-imports",
"jsx-a11y",
"@typescript-eslint"
],
"rules": {
// 関数の戻り値の型を明示的に指定する
"@typescript-eslint/explicit-function-return-type": "error",
// 必要な場合にのみアロー関数の本体を使用する
"arrow-body-style": ["error", "as-needed"],
// テンプレートリテラルの使用を推奨
"prefer-template": "warn",
// アロー関数のコールバックの使用を推奨
"prefer-arrow-callback": "warn",
// 未使用のインポートを禁止
"unused-imports/no-unused-imports": "error",
// JSXのブール属性の値を明示的に指定する
"react/jsx-boolean-value": "error",
// JSXの中括弧のスペースを禁止
"react/jsx-curly-brace-presence": "error",
// 自己終了タグを使用する
"react/self-closing-comp": [
"error",
{
"component": true,
"html": true
}
],
// 型の名前をパスカルケースにする
"@typescript-eslint/naming-convention": [
"error",
{
"selector": "typeLike",
"format": ["PascalCase"]
}
],
// 特定のディレクトリからのimportを禁止する
"import/no-restricted-paths": [
"error",
{
"zones": [
// uiコンポーネントにおいて、modelとpageのimportを禁止する
{
"target": "./src/components/ui",
"from": ["./src/components/model", "./src/components/page"]
},
// modelコンポーネントにおいて、pageのimportを禁止する
{
"target": "./src/components/model",
"from": ["./src/components/page"]
},
// pageコンポーネントにおいて、他のpageコンポーネントからのimportを禁止する
{
"target": "./src/components/page/**/index.tsx",
"from": ["./src/components/page/**/index.tsx"]
},
// appディレクトリ配下においてmodel,uiのimportを禁止する
{
"target": "./src/app/**/page.tsx",
"from": ["./src/components/model", "./src/components/ui"]
}
]
}
],
// ステートメント間の空行
"padding-line-between-statements": [
"error",
{
// 特定の宣言の間に空行を設ける
"blankLine": "always",
"prev": [
"import",
"multiline-const",
"multiline-expression",
"multiline-let",
"export",
"cjs-export",
"directive",
"function"
],
"next": [
"import",
"multiline-const",
"multiline-expression",
"multiline-let",
"export",
"cjs-export",
"directive",
"function"
]
},
// import宣言の間に必要があれば空行を設ける
{ "blankLine": "any", "prev": "import", "next": "import" }
],
// JSXを含むファイルの拡張子を指定します。
"react/jsx-filename-extension": [
"error",
{
"extensions": ["tsx"]
}
],
// コンポーネントをarrow関数で定義する
"react/function-component-definition": [
2,
{
"namedComponents": "arrow-function",
"unnamedComponents": "arrow-function"
}
],
// importの順序を制御
"import/order": [
"error",
{
"groups": [
"builtin",
"external",
"parent",
"sibling",
"index",
"object",
"type"
],
"pathGroups": [
{
"pattern": "{react,react-dom/**,react-router-dom}",
"group": "builtin",
"position": "before"
},
{
"pattern": "@src/**",
"group": "parent",
"position": "before"
}
],
"pathGroupsExcludedImportTypes": ["builtin"],
"alphabetize": {
"order": "asc"
},
"newlines-between": "always"
}
],
// 型のimportにおいてtypeをつけることを推奨
"@typescript-eslint/consistent-type-imports": [
"error",
{
"prefer": "type-imports"
}
]
}
}