This repository has been archived by the owner on Jul 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
70 lines (59 loc) · 2.56 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
63
64
65
66
67
68
69
70
module.exports = {
// Environments (構成情報)
// ==============================
// ESLintを処理するプロセッサの指定
// https://eslint.org/docs/user-guide/configuring#specifying-processor
parser: '@typescript-eslint/parser',
// ECMAScriptのバージョンやJSXなどのパーサのオプションを指定
// https://eslint.org/docs/user-guide/configuring#specifying-parser-options
parserOptions: {
ecmaFeatures: {
jsx: true
},
ecmaVersion: 2020,
sourceType: 'module'
},
// Globals (eslintが実行中にアクセス可能にするグローバル変数)
// ==============================
// 環境に依存するグローバル変数を定義
// https://eslint.org/docs/user-guide/configuring#specifying-environments
env: {
// ブラウザのグローバル変数
browser: true,
es2020: true
},
// 個別のグローバル変数
// https://eslint.org/docs/user-guide/configuring#specifying-environments
globals: {},
// Rules (ESLintのルールの設定)
// ==============================
// サードパーティのプラグインによって定義されたルールや環境、または構成を使用する場合に指定
// https://eslint.org/docs/user-guide/configuring#configuring-plugins
plugins: ['react', '@typescript-eslint', '@emotion'],
// サードパーティやESLintが推奨するベースのルールを設定
// https://eslint.org/docs/user-guide/configuring#using-eslint-recommended
// https://eslint.org/docs/user-guide/configuring#using-eslint-recommended
extends: [
// ESLintの推奨する一連のルール
// 'eslint:recommended',
// reactの推奨ルール
'plugin:react/recommended',
// typescript-eslintで対応できるeslintの推奨する一連のルール
// 'plugin:@typescript-eslint/eslint-recommended',
// typescrip-eslinttの推奨する一連のルール
'plugin:@typescript-eslint/recommended'
],
// 個別で定義するルール
// https://eslint.org/docs/user-guide/configuring#using-the-configuration-from-a-plugin
// https://eslint.org/docs/rules/
rules: {
'react/prop-types': 'off',
'@emotion/pkg-renaming': 'error'
},
// 特定のファイルグループで設定するルール
// https://eslint.org/docs/user-guide/configuring#disabling-rules-only-for-a-group-of-files
// overrides: {},
// ESLintを適応しないファイルやディレクトリを指定 (v6.7.0以上)
// https://eslint.org/docs/user-guide/configuring#ignorepatterns-in-config-files
ignorePatterns: ['node_modules/']
}