-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
84 lines (84 loc) · 3.21 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
{
"env": {
"browser": true,
"es2021": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:react-hooks/recommended",
"plugin:react/recommended"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly",
"React": "writable"
},
"ignorePatterns": ["build"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": { "jsx": true },
"ecmaVersion": 2021,
"sourceType": "module",
"project": "./tsconfig.json"
},
"plugins": ["@typescript-eslint", "react", "import", "unused-imports"],
//ここに個別対応したいものを書く
"rules": {
// unused-imports のルールとバッティングするので off にする
"@typescript-eslint/no-unused-vars": "off",
"unused-imports/no-unused-imports": "error",
"import/order": [
"warn",
{
// グループごとの並び順
"groups": [
"builtin", // 1. fsや path などの node "builtin" のモジュール
"external", // 2. npm install したパッケージ
"internal", // 3. webpack などでパス設定したモジュール
["parent", "sibling"], // 4. 親階層と小階層のファイル
"object", // object"-imports
"type", // 型だけをインポートする type imports
"index" // 同階層のファイル
],
// グループごとに改行を入れる
"newlines-between": "always", // "never" を指定すると改行なし
// FIXME: ちょっとよく分かってない
// This defines import types that are not handled by configured pathGroups. This is mostly needed when you want to handle path groups that look like external imports.
"pathGroupsExcludedImportTypes": ["builtin"],
// アルファベット順・大文字小文字を区別しない
"alphabetize": { "order": "asc", "caseInsensitive": true },
// パターンマッチしたものをグループにする
// "newlines-between": "always" の場合は pathGroups ごとに空行が入る
"pathGroups": [
// react 関連を external より前にする
// "pathGroupsExcludedImportTypes": ["react"], にしてみたが `react`, `react-dom` などが別グループになってしまったので pattern で無理やり同じグループにした
{
"pattern": "react**",
"group": "external",
"position": "before"
},
// `@/app`, `@/features/`, `@/libs` の import をひとグループにして internal の前に
{
"pattern": "{@/app/**,@/features/**,@/libs/**}",
"group": "internal",
"position": "before"
},
// `@/components`, `@/pages` の import をグルーピング
{
"pattern": "{@/components/**,@/pages/**}",
"group": "internal",
"position": "before"
},
// CSS module を一番最後に
{
"pattern": "./**.module.css",
"group": "index",
"position": "after"
}
]
}
]
},
"settings": { "react": { "version": "detect" } }
}