-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
60 lines (60 loc) · 1.81 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
{
// 適用する環境
"env": {
"node": true, // Nodejs グローバル変数と Nodejs スコープを検証
"es6": true, // モジュールを除くすべての ECMAScript 6 機能を有効
"commonjs": true // CommonJS グローバル変数と CommonJS スコープ を検証
},
"parser": "@typescript-eslint/parser",
// 構文解析(パーサー)
"parserOptions": {
// モジュール形式のソースコードを用います
"sourceType": "module",
// JS のバージョンは最新とします
"ecmaVersion": "latest"
},
// プラグイン
"plugins": ["@typescript-eslint", "import"],
/**
* ルールのインポート
*/
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"prettier" // eslint-config-prettier
],
"rules": {
"import/order": [
"error",
{
"groups": [
"builtin", // 組み込みモジュール
"external", // npmでインストールした外部ライブラリ
"internal", // 自作モジュール
["parent", "sibling"],
"object",
"type",
"index"
],
"newlines-between": "always", // グループ毎にで改行を入れる
"pathGroupsExcludedImportTypes": ["builtin"],
"alphabetize": {
"order": "asc", // 昇順にソート
"caseInsensitive": true // 小文字大文字を区別する
},
"pathGroups": []
}
],
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-unused-vars": [
"warn",
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_",
"caughtErrorsIgnorePattern": "^_",
"destructuredArrayIgnorePattern": "^_"
}
]
}
}