-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
62 lines (52 loc) · 1.48 KB
/
.eslintrc.js
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
// eslint-config-prettier
// ESLintとprettierの処理で重複する項目について無効化してくれる
// eslint-plugin-prettier
// prettierで設定できるルールをESLintのルールとして処理できるようにする
module.exports = {
// TSをESLintで解釈できるようにするparser
parser: "@typescript-eslint/parser",
// TS対応
plugins: ["@typescript-eslint"],
// extends にて、プラグインが提供する推奨設定を指定できます。
extends: [
// eslint 推奨ルール
"eslint:recommended",
// eslint-plugin-prettier 推奨設定
"plugin:prettier/recommended",
// TypeScriptでチェックされる項目を除外する設定
"plugin:@typescript-eslint/eslint-recommended",
// typescript-eslint 推奨設定
"plugin:@typescript-eslint/recommended",
// ESLintにないTS固有のルールを担う
"prettier/@typescript-eslint",
// react用ルール
"plugin:react/recommended"
],
settings: {
react: {
version: "detect"
}
},
parserOptions: {
sourceType: "module"
},
env: {
browser: true,
node: true,
es6: true
},
rules: {
// ts-lintとの差分吸収
"@typescript-eslint/explicit-function-return-type": 0,
// ts-lintとの差分吸収
"@typescript-eslint/explicit-member-accessibility": 0
},
overrides: [
{ // TS と props の警告
files: ["**/*.tsx"],
rules: {
"react/prop-types": 0
}
}
]
};