-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path.eslintrc.js
91 lines (91 loc) · 2.63 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
79
80
81
82
83
84
85
86
87
88
89
90
91
module.exports = {
extends: [
'airbnb',
'airbnb/hooks',
'prettier',
'prettier/react',
'plugin:cypress/recommended',
'plugin:import/errors',
'plugin:import/warnings',
'plugin:import/typescript',
],
env: {
browser: true,
},
parser: '@typescript-eslint/parser',
plugins: ['prettier', '@typescript-eslint', 'cypress'],
rules: {
'prettier/prettier': 'error',
'func-names': ['warn', 'as-needed'],
'react/jsx-filename-extension': ['error', { extensions: ['.js'] }],
'import/prefer-default-export': 0,
'import/no-extraneous-dependencies': 0,
// https://github.com/airbnb/javascript/blob/6d05dd898acfec3299cc2be8b6188be542824965/packages/eslint-config-airbnb/rules/react.js#L489
'react/static-property-placement': ['error', 'static public field'],
// Does not handle initial state derived from props in constructor
'react/state-in-constructor': 'off',
// TODO: Use shorthand
'react/jsx-fragments': 'off',
'react/jsx-props-no-spreading': 'off',
'import/extensions': [
'error',
'ignorePackages',
{
// Allow absence of file extensions on these imports:
js: 'never',
mjs: 'never',
jsx: 'never',
ts: 'never',
tsx: 'never',
},
],
'no-use-before-define': 'off',
'@typescript-eslint/no-use-before-define': ['error'],
'no-shadow': 'off',
'@typescript-eslint/no-shadow': ['error'],
'react/no-unused-prop-types': 'off',
'react/require-default-props': 'off',
'react/forbid-prop-types': 'off',
},
overrides: [
{
files: ['**/*.ts', '**/*.tsx'],
extends: [
'plugin:@typescript-eslint/eslint-recommended',
'plugin:@typescript-eslint/recommended',
'prettier/@typescript-eslint',
],
rules: {
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-non-null-assertion': 'off',
'react/no-array-index-key': 'off',
'@typescript-eslint/no-var-requires': 'off',
'no-restricted-syntax': 'off',
'react/jsx-filename-extension': 'off',
'react/prop-types': 'off',
},
},
{
// Set environment for tests
files: [
'**/*spec.[jt]s',
'**/*test.[jt]s',
'**/__tests__/**/*.[jt]s',
'**/__mocks__/**/*.[jt]s',
],
env: {
jest: true,
},
},
{
// Allow importing from resources only in package examples
files: ['packages/**/example/*.js'],
rules: {
'import/no-unresolved': ['error', { ignore: ['^@resources/'] }],
},
},
],
parserOptions: {
ecmaVersion: '2018',
},
}