-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.yml
39 lines (39 loc) · 866 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
34
35
36
37
38
39
env:
browser: true
es2021: true
extends:
- 'eslint:recommended'
- 'plugin:@typescript-eslint/recommended'
- 'plugin:import/errors'
- 'plugin:import/warnings'
- 'plugin:import/typescript'
parser: '@typescript-eslint/parser'
parserOptions:
ecmaVersion: 12
sourceType: module
plugins:
- '@typescript-eslint'
- import
rules:
linebreak-style:
- error
- unix
prefer-const: warn
'@typescript-eslint/no-extra-semi': off
'@typescript-eslint/ban-ts-comment': warn
'@typescript-eslint/no-unused-vars': off
'@typescript-eslint/no-inferrable-types': warn
no-empty: warn
'@typescript-eslint/consistent-type-imports':
- error
- prefer: type-imports
import/order:
- error
- groups:
- "external"
- "parent"
- "sibling"
- "type"
import/no-unresolved: off
ignorePatterns:
- '*.d.ts'