-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
43 lines (43 loc) · 1.09 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
{
"extends": [
"next/core-web-vitals",
"plugin:storybook/recommended",
"plugin:jsx-a11y/recommended",
"prettier"
],
"plugins": ["import", "jsx-a11y"],
"rules": {
"import/order": [
"error",
{
"groups": [
"builtin", // 組み込みモジュール
"external", // npmでインストールした外部ライブラリ
"internal", // 自作モジュール
["parent", "sibling"],
"object",
"type",
"index"
],
"pathGroupsExcludedImportTypes": ["builtin"],
"alphabetize": {
"order": "asc", // 昇順にソート
"caseInsensitive": true // 小文字大文字を区別する
},
"pathGroups": [
// 指定した順番にソートされる
{
"pattern": "@/components/common",
"group": "internal",
"position": "before"
},
{
"pattern": "@/components/hooks",
"group": "internal",
"position": "before"
}
]
}
]
}
}