This repository has been archived by the owner on Mar 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy path.eslintrc.js
78 lines (78 loc) · 2.35 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
71
72
73
74
75
76
77
78
module.exports = {
root: true,
env: {
es6: true,
node: true,
browser: true,
jest: true
},
extends: ['airbnb', 'prettier', 'plugin:prettier/recommended'],
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint', 'prettier'],
rules: {
camelcase: 'off',
'dot-notation': 'off',
'no-underscore-dangle': 'off',
'import/no-extraneous-dependencies': 'off',
'import/prefer-default-export': 'off',
'jsx-a11y/anchor-is-valid': 'off',
'jsx-a11y/label-has-associated-control': 'off',
'react/jsx-closing-tag-location': 'off',
'react/jsx-curly-brace-presence': 'off',
'react/jsx-filename-extension': ['error', { extensions: ['.jsx', '.tsx'] }],
'react/jsx-one-expression-per-line': 'off',
'react/jsx-props-no-spreading': 'off',
'react/jsx-wrap-multilines': 'off',
'react/require-default-props': 'off',
// Cannot use `Component.displayName` pattern on class components in TS.
'react/static-property-placement': 'off'
},
settings: {
'import/resolver': {
node: {
extensions: ['.js', '.mjs', '.jsx', '.ts', '.tsx', '.json']
},
typescript: {}
},
'import/extensions': ['.js', '.mjs', '.jsx', '.ts', '.tsx']
},
overrides: [
{
files: ['**/*.ts', '**/*.tsx'],
extends: [
'plugin:@typescript-eslint/recommended',
'plugin:@typescript-eslint/eslint-recommended',
'prettier/@typescript-eslint'
],
parserOptions: {
// typescript-eslint specific options
warnOnUnsupportedTypeScriptVersion: true
},
rules: {
'no-unused-vars': 'off',
'@typescript-eslint/camelcase': 'off',
'@typescript-eslint/explicit-function-return-type': ['off'],
'@typescript-eslint/no-unused-vars': ['warn', { argsIgnorePattern: '^_', varsIgnorePattern: '^_' }],
// Allow `.ts` and `.tsx` extensions to be omitted
'import/extensions': [
'error',
'ignorePackages',
{
js: 'never',
mjs: 'never',
jsx: 'never',
ts: 'never',
tsx: 'never'
}
],
// No need to use prop types on TS files.
'react/prop-types': 'off'
}
},
{
files: ['.eslintrc.js', '*.config.js'],
parserOptions: { sourceType: 'script' },
env: { node: true }
}
]
};