-
Notifications
You must be signed in to change notification settings - Fork 133
/
.eslintrc.js
110 lines (106 loc) · 3.52 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
module.exports = {
parser: '@babel/eslint-parser',
extends: [
'plugin:compat/recommended',
'plugin:jsx-a11y/recommended',
'airbnb',
'plugin:prettier/recommended',
],
rules: {
curly: ['error', 'all'],
'lines-between-class-members': 'warn',
'no-else-return': 'warn',
'no-plusplus': ['error', { allowForLoopAfterthoughts: true }],
'no-console': 'error',
'no-restricted-exports': 'off',
'import/no-extraneous-dependencies': 'off',
'import/no-named-default': 'off',
'import/extensions': 'off',
// react
'react/button-has-type': 'warn',
'react/destructuring-assignment': 'off',
'react/jsx-filename-extension': ['error', { extensions: ['.js'] }],
'react/jsx-fragments': 'off',
'react/jsx-key': 'error',
'react/jsx-props-no-spreading': 'off',
'react/forbid-prop-types': ['warn', { forbid: ['any', 'array', 'object'] }],
'react/require-default-props': 'warn',
'react/sort-comp': 'off',
'react/state-in-constructor': 'off',
'react/static-property-placement': 'off',
'react/function-component-definition': 'off',
// jsx-a11y
'jsx-a11y/anchor-is-valid': [
'error',
{
components: ['Link'],
specialLink: ['to'],
aspects: ['noHref', 'invalidHref', 'preferButton'],
},
],
'jsx-a11y/label-has-associated-control': 'off', // this has a bug with FormattedMessage
'jsx-a11y/label-has-for': 'off', // deprecated in 6.1.0, does not support select tags
'jsx-a11y/control-has-associated-label': 'off', // this has a bug with FormattedMessage
// compat
'compat/compat': 'warn',
// prettier
'prettier/prettier': [
'error',
{
arrowParens: 'avoid',
endOfLine: 'auto',
singleQuote: true,
trailingComma: 'all',
},
],
},
env: {
browser: true,
},
plugins: ['react', 'compat', 'prettier', 'jsx-a11y'],
settings: {
polyfills: ['fetch', 'promises'],
},
overrides: [
{
files: ['*.js'],
processor: '@graphql-eslint/graphql',
},
{
files: ['*.graphql'],
extends: [
'plugin:@graphql-eslint/operations-recommended',
'plugin:@graphql-eslint/relay',
],
// Available rules can be found at https://the-guild.dev/graphql/eslint/rules/naming-convention
rules: {
'@graphql-eslint/no-deprecated': 'warn',
// Recommended naming conventions have some clashes with relay conventions
'@graphql-eslint/naming-convention': [
'error',
{
VariableDefinition: 'camelCase',
},
],
// Relay directives caused errors and ignoring them didn't work for some reason
'@graphql-eslint/known-directives': 'off',
// These require parserOptions.operations to be defined
// but haven't been able to figure out if it is possible
// to define them with relay
'@graphql-eslint/known-fragment-names': 'off',
'@graphql-eslint/no-one-place-fragments': 'off',
'@graphql-eslint/no-undefined-variables': 'off',
'@graphql-eslint/no-unused-fragments': 'off',
'@graphql-eslint/no-unused-variables': 'off',
'@graphql-eslint/require-id-when-available': 'off',
'@graphql-eslint/require-import-fragment': 'off',
'@graphql-eslint/selection-set-depth': 'off',
'@graphql-eslint/unique-fragment-name': 'off',
'@graphql-eslint/unique-operation-name': 'off',
},
parserOptions: {
schema: './build/schema.graphql',
},
},
],
};