forked from concrnt/concrnt-world
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc.yml
More file actions
27 lines (27 loc) · 836 Bytes
/
Copy path.eslintrc.yml
File metadata and controls
27 lines (27 loc) · 836 Bytes
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
env:
browser: true
es2021: true
extends:
- plugin:react/recommended
- standard-with-typescript
- prettier
overrides: []
parserOptions:
ecmaVersion: latest
project:
- tsconfig.json
sourceType: module
plugins:
- react
rules:
'@typescript-eslint/no-dynamic-delete': ['off']
'@typescript-eslint/no-floating-promises': ['off']
'@typescript-eslint/no-non-null-assertion': ['off']
'@typescript-eslint/no-unused-vars': ['warn']
'@typescript-eslint/prefer-nullish-coalescing': ['off']
'@typescript-eslint/promise-function-async': ['off']
'@typescript-eslint/restrict-template-expressions': ['off']
'@typescript-eslint/strict-boolean-expressions': ['off']
'@typescript-eslint/triple-slash-reference': ['off']
"@typescript-eslint/consistent-type-assertions": ["off"]
'react/react-in-jsx-scope': ['off']