forked from lvntruong/cip14-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
95 lines (95 loc) · 3.01 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
module.exports = {
parser: '@typescript-eslint/parser',
parserOptions: {
project: './tsconfig.json',
sourceType: 'module',
ecmaVersion: 'latest',
emitDecoratorMetadata: true,
},
plugins: ['@typescript-eslint/eslint-plugin', 'nestjs', 'node'],
extends: [
'airbnb-base',
'airbnb-typescript/base',
'plugin:@typescript-eslint/recommended',
'plugin:nestjs/recommended',
'plugin:node/recommended-module',
'plugin:prettier/recommended',
'prettier',
],
root: true,
env: {
node: true,
jest: true,
},
settings: {
'import/resolver': {
typescript: {},
},
},
ignorePatterns: ['.eslintrc.cjs', 'test/setup.jest.cjs', 'types/google'],
rules: {
// note you must disable the base rule as it can report incorrect errors
// https://github.com/typescript-eslint/typescript-eslint/issues/2484#issuecomment-687257773
'no-shadow': 'off',
'no-use-before-define': 'error',
'no-nested-ternary': 'off',
'no-warning-comments': 'warn',
'@typescript-eslint/no-shadow': ['error'],
'@typescript-eslint/naming-convention': 'warn',
// it doesn't understand top-level await
'node/no-unsupported-features/es-syntax': 'warn',
'@typescript-eslint/no-empty-interface': 'warn',
'node/no-extraneous-import': 'warn',
'node/no-unpublished-import': 'warn',
'max-classes-per-file': 'off',
'@typescript-eslint/interface-name-prefix': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-misused-promises': ['error'],
'node/no-missing-import': 'off',
'import/no-cycle': 'warn',
'@typescript-eslint/no-throw-literal': 'error',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-floating-promises': ['error'],
'no-console': 'error',
'no-invalid-this': 'error',
'@typescript-eslint/require-await': 'error',
'@typescript-eslint/await-thenable': 'error',
'@typescript-eslint/consistent-type-imports': [
'error',
{
prefer: 'type-imports',
disallowTypeAnnotations: true,
fixStyle: 'inline-type-imports',
},
],
'@typescript-eslint/ban-ts-comment': 'error',
'@typescript-eslint/no-loop-func': 'warn',
'import/prefer-default-export': 'off',
// needed for TS and importing CJS modules
'import/extensions': [
'error',
'always',
{
ignorePackages: false,
pattern: {
'': 'always',
ts: 'never',
js: 'never',
},
},
],
'no-useless-constructor': 'off',
'@typescript-eslint/no-useless-constructor': ['error'],
'no-empty-function': 'off',
'import/no-extraneous-dependencies': 'off',
camelcase: 'off',
'no-restricted-syntax': ['error', 'WithStatement'],
'class-methods-use-this': 'off',
'no-underscore-dangle': 'off',
'@typescript-eslint/no-unused-vars': 'error',
'no-await-in-loop': 'off',
'no-continue': 'off',
'no-plusplus': 'off',
},
};