-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.yml
33 lines (33 loc) · 856 Bytes
/
.eslintrc.yml
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
env:
browser: false
es2020: true
extends:
- airbnb
- plugin:node/recommended
- plugin:@typescript-eslint/recommended
- plugin:prettier/recommended
- prettier
parser: '@typescript-eslint/parser'
parserOptions:
ecmaVersion: 11
sourceType: module
rules:
{
semi: 'off',
'no-console': 'off',
'no-plusplus': 'off',
'no-new': 'off',
'@typescript-eslint/no-var-requires': 'off',
'import/extensions': 'off',
'node/no-unsupported-features/es-syntax': 0,
'lines-between-class-members': 0,
'import/no-unresolved': 0,
'func-names': 0,
'node/no-missing-import': 0,
'class-methods-use-this': 0,
'import/prefer-default-export': 0,
'@typescript-eslint/no-explicit-any': 0,
'@typescript-eslint/explicit-module-boundary-types': 0,
'@typescript-eslint/ban-ts-comment': 0,
'radix': 0,
}