-
Notifications
You must be signed in to change notification settings - Fork 144
/
.eslintrc.js
48 lines (48 loc) · 1.32 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
module.exports = {
root: true,
env: {
node: true,
es2021: true,
},
extends: [
'airbnb-typescript/base',
'eslint:recommended',
'plugin:@typescript-eslint/recommended-requiring-type-checking',
'plugin:import/errors',
'plugin:import/typescript',
'prettier',
],
parser: '@typescript-eslint/parser',
parserOptions: {
project: './tsconfig.json',
tsconfigRootDir: __dirname,
},
plugins: ['@typescript-eslint', 'import'],
rules: {
'no-console': ['error', { allow: ['warn', 'error'] }],
'@typescript-eslint/naming-convention': 'warn',
'no-unused-vars': 'off',
'@typescript-eslint/no-unused-vars': ['warn', { argsIgnorePattern: '^_' }],
'@typescript-eslint/lines-between-class-members': 'off',
'@typescript-eslint/restrict-template-expressions': 'error',
'@typescript-eslint/no-use-before-define': ['error', { functions: false, classes: false }],
'import/no-unresolved': 'error',
'import/no-extraneous-dependencies': ['error', { devDependencies: true }],
},
settings: {
'import/resolver': {
typescript: {
alwaysTryTypes: true,
},
},
},
overrides: [
{
files: ['*.js'],
rules: {
'@typescript-eslint/no-var-requires': 'off',
},
},
],
ignorePatterns: ['out', 'dist', 'server', '**/*.d.ts'],
};