-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
152 lines (152 loc) · 3.08 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
module.exports = {
root: true,
env: {
browser: true,
es6: true,
jest: true,
node: true,
es2021: true,
},
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaFeatures: {
experimentalObjectRestSpread: true,
jsx: true,
warnOnUnsupportedTypeScriptVersion: false,
},
ecmaVersion: 13,
sourceType: 'module',
},
plugins: [
'@typescript-eslint',
'clean-regex',
'css-modules',
'graphql',
'import',
'prettierx',
'react',
'react-hooks',
],
settings: {
prettierx: {
usePrettierrc: false,
},
react: {
version: 'detect',
},
},
extends: [
'eslint:recommended',
'next',
'plugin:@typescript-eslint/recommended',
'plugin:clean-regex/recommended',
'plugin:css-modules/recommended',
'plugin:import/errors',
'plugin:import/typescript',
'plugin:import/warnings',
'plugin:prettierx/standardize',
'plugin:react/recommended',
'plugin:you-dont-need-momentjs/recommended',
],
rules: {
'prettierx/options': [
2,
{
alignObjectProperties: false,
jsxSingleQuote: false,
semi: true,
singleQuote: true,
spaceBeforeFunctionParen: true,
trailingComma: 'all',
useTabs: true,
},
],
'linebreak-style': 'off',
'no-console': 'off',
'no-constant-condition': 'off',
'@typescript-eslint/no-unused-vars': [
'warn',
{
varsIgnorePattern: 'UU',
args: 'none',
},
],
'quotes': 'off',
'import/named': 2,
'import/no-named-as-default': 'off',
'import/no-anonymous-default-export': 'off',
'import/order': [
'error',
{
'alphabetize': { caseInsensitive: true, order: 'asc' },
'newlines-between': 'always',
},
],
'one-var': ['error', 'never'],
'no-var': 'error',
'padding-line-between-statements': [
'error',
{
blankLine: 'always',
prev: '*',
next: 'return',
},
{
blankLine: 'always',
prev: ['const', 'let', 'var'],
next: '*',
},
{
blankLine: 'any',
prev: ['const', 'let', 'var'],
next: ['const', 'let', 'var'],
},
{
blankLine: 'always',
prev: ['block', 'block-like', 'if'],
next: '*',
},
{
blankLine: 'always',
prev: '*',
next: ['block', 'block-like', 'if'],
},
{
blankLine: 'any',
prev: 'export',
next: '*',
},
{
blankLine: 'any',
prev: '*',
next: 'export',
},
],
'react/no-danger': 'off',
'react/no-find-dom-node': 'off',
'react/jsx-filename-extension': [
1,
{
extensions: ['.tsx', '.jsx'],
},
],
'react/prop-types': [0],
'react/boolean-prop-naming': ['error'],
'react/jsx-curly-brace-presence': ['error', { props: 'never', children: 'never' }],
'react-hooks/rules-of-hooks': 'error',
'react-hooks/exhaustive-deps': 'warn',
'graphql/template-strings': [
'error',
{
env: 'apollo',
schemaJsonFilepath: './graphql/graphql.schema.json',
},
],
'@typescript-eslint/indent': 'off',
'@typescript-eslint/prefer-interface': 'off',
'@typescript-eslint/interface-name-prefix': 'off',
'@typescript-eslint/ban-ts-comment': 'warn',
'@typescript-eslint/explicit-function-return-type': 'error',
'prefer-template': 'error',
},
};