-
Notifications
You must be signed in to change notification settings - Fork 34
/
.eslintrc.js
38 lines (38 loc) · 936 Bytes
/
.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
module.exports = {
env: {
es2022: true,
node: true,
},
extends: [
'airbnb-base',
'airbnb-typescript/base',
],
parserOptions: {
project: './tsconfig.eslint.json',
},
rules: {
'@typescript-eslint/lines-between-class-members': [
'error',
'always',
{ exceptAfterSingleLine: true },
],
'@typescript-eslint/consistent-type-imports': 'error',
'import/order': ['error', {
groups: [['builtin', 'external'], ['internal', 'parent', 'sibling', 'index', 'object'], 'type'],
'newlines-between': 'never',
}],
'max-len': ['error', { code: 150 }],
'no-restricted-syntax': 'off',
'no-promise-executor-return': 'off',
'default-case': 'off',
'no-return-await': 'off',
'@typescript-eslint/return-await': ['error', 'in-try-catch'],
},
settings: {
'import/resolver': {
node: {
extensions: ['.js', '.ts'],
},
},
},
};