-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.js
120 lines (109 loc) · 3.72 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
const config = {
extends: [
'airbnb',
'airbnb/hooks',
'plugin:@typescript-eslint/recommended',
],
env: {
browser: true,
jest: true,
},
plugins: [
'graphql',
'@typescript-eslint',
],
settings: {
'import/resolver': {
'babel-module': {
root: ['.'],
extensions: ['.js', '.jsx', '.ts', '.tsx'],
alias: {
'#generated': './generated',
'#components': './src/components',
'#config': './src/config',
'#resources': './src/resources',
'#utils': './src/utils',
'#views': './src/views',
'#types': './src/types',
'#hooks': './src/hooks',
},
},
},
react: {
version: 'detect',
},
},
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 2018,
ecmaFeatures: {
jsx: true,
},
sourceType: 'module',
allowImportExportEverywhere: true,
},
rules: {
strict: 1,
indent: ['error', 4, { SwitchCase: 1 }],
'no-console': 0,
'no-unused-vars': 0,
'@typescript-eslint/no-unused-vars': 1,
'no-use-before-define': 0,
'@typescript-eslint/no-use-before-define': 1,
// note you must disable the base rule as it can report incorrect errors
'no-shadow': 0,
'@typescript-eslint/no-shadow': ['error'],
'prefer-destructuring': 'warn',
'function-paren-newline': ['warn', 'consistent'],
'object-curly-newline': [2, {
ObjectExpression: { consistent: true },
ObjectPattern: { consistent: true },
ImportDeclaration: { consistent: true },
ExportDeclaration: { consistent: true },
}],
'import/extensions': ['off', 'never'],
'import/no-extraneous-dependencies': ['error', { devDependencies: true }],
'@typescript-eslint/no-empty-interface': 0,
'@typescript-eslint/explicit-function-return-type': 0,
'@typescript-eslint/explicit-module-boundary-types': 0,
'jsx-a11y/anchor-is-valid': ['error', {
components: ['Link'],
specialLink: ['to'],
}],
'jsx-a11y/label-has-for': 'warn',
'react/jsx-indent': [2, 4],
'react/jsx-indent-props': [2, 4],
'react/jsx-filename-extension': ['error', { extensions: ['.js', '.jsx', '.ts', '.tsx'] }],
'react/prop-types': [1, { ignore: [], customValidators: [], skipUndeclared: false }],
'react/forbid-prop-types': [1],
'react/destructuring-assignment': [1, 'always', { ignoreClassFields: true }],
'react/sort-comp': [1, {
order: [
'static-methods',
'constructor',
'lifecycle',
'everything-else',
'render',
],
}],
'react/no-unused-state': 'warn',
'react/jsx-props-no-spreading': 0,
'react/require-default-props': ['warn', { ignoreFunctionalComponents: true }],
'react/default-props-match-prop-types': ['warn', {
allowRequiredDefaults: true,
}],
'react-hooks/rules-of-hooks': 'error',
'react-hooks/exhaustive-deps': 'warn',
},
};
try {
const introspectionSchema = require('./generated/schema.json');
config.rules['graphql/template-strings'] = ['error', {
env: 'apollo',
schemaJson: introspectionSchema,
}];
} catch (e) {
// do nothing here
console.warn('Skipping eslint check for graphql/template-strings');
}
module.exports = config;