-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.cjs
45 lines (43 loc) · 1.24 KB
/
.eslintrc.cjs
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
// eslint-disable-next-line @typescript-eslint/no-var-requires
const stylistic = require('@stylistic/eslint-plugin')
const customized = stylistic.configs.customize({
indent: 4,
quotes: 'double',
semi: false,
jsx: true
})
module.exports = {
extends: [
'next/core-web-vitals',
'eslint:recommended',
'plugin:@typescript-eslint/recommended'
],
plugins: [
'@stylistic',
'@typescript-eslint'
],
rules: {
...customized.rules,
'@stylistic/jsx-one-expression-per-line': 'off',
'@stylistic/max-len': ['warn', 120],
'@stylistic/no-trailing-spaces': ['error', { skipBlankLines: true }],
'@stylistic/member-delimiter-style': ['error', {
multiline: {
delimiter: 'comma',
requireLast: true
},
singleline: {
delimiter: 'comma',
requireLast: false
}
}],
'@stylistic/multiline-ternary': 'off',
'@stylistic/brace-style': ['error', '1tbs', {
allowSingleLine: true
}],
'@typescript-eslint/no-unused-vars': [
'error',
{ argsIgnorePattern: '^_', varsIgnorePattern: '^_' }
]
}
}