-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.yml
33 lines (33 loc) · 1.04 KB
/
.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: true
es2021: true
extends:
- standard-with-typescript
overrides: []
parserOptions:
ecmaVersion: latest
sourceType: module
project: ['./tsconfig.json']
rules:
{
comma-dangle: 0,
no-console: 2,
quote-props: 0,
multiline-ternary: 0,
no-misleading-character-class: 0,
'@typescript-eslint/comma-dangle': 0,
'@typescript-eslint/no-namespace': 0,
'@typescript-eslint/strict-boolean-expressions': 0,
'@typescript-eslint/explicit-function-return-type': 0,
'@typescript-eslint/space-before-function-paren': 0,
'@typescript-eslint/consistent-type-assertions': 0,
'@typescript-eslint/indent': 0,
'@typescript-eslint/prefer-nullish-coalescing': 0,
'@typescript-eslint/no-misused-promises': 0,
'@typescript-eslint/no-non-null-assertion': 0,
'@typescript-eslint/array-type': 0,
'@typescript-eslint/restrict-template-expressions': 0,
'@typescript-eslint/consistent-type-definitions': 0,
'@typescript-eslint/no-extraneous-class': 0,
}
ignorePatterns: ['dist', 'node_modules']