-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.cjs
63 lines (60 loc) · 1.96 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
module.exports = {
env: {
es2021: true,
node: true,
},
extends: ['standard-with-typescript', 'plugin:prettier/recommended', 'plugin:import/errors', 'plugin:import/warnings', 'plugin:import/typescript'],
overrides: [],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 12,
sourceType: 'module',
},
plugins: ['@typescript-eslint', 'prettier', 'import'],
rules: {
'prettier/prettier': 'error',
'import/extensions': 'off',
'import/no-unresolved': 'error',
'no-console': 'off',
'no-restricted-syntax': 'off',
'no-param-reassign': 'off',
'consistent-return': 'off',
'no-underscore-dangle': ['error', { allow: ['_id'] }],
'class-methods-use-this': 'off',
radix: 'off',
eqeqeq: 'off',
'import/order': [
'error',
{
'newlines-between': 'never',
groups: [
['builtin', 'external'],
['internal', 'parent', 'sibling', 'index'],
],
},
],
'@typescript-eslint/no-explicit-any': 'off',
},
settings: {
'import/parsers': {
'@typescript-eslint/parser': ['.ts'],
},
'import/resolver': {
typescript: {
alwaysTryTypes: true, // always try to resolve types under `<root>@types` directory even it doesn't contain any source code, like `@types/unist`
// Choose from one of the "project" configs below or omit to use <root>/tsconfig.json by default
// use <root>/path/to/folder/tsconfig.json
project: './tsconfig.json',
},
},
},
// globals: {
// _: 'readonly',
// log: 'readonly',
// emitter: 'readonly',
// messages: 'readonly',
// redis: 'readonly',
// io: 'readonly',
// app: 'readonly',
// },
};