-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy path.eslintrc.yml
More file actions
30 lines (30 loc) · 752 Bytes
/
.eslintrc.yml
File metadata and controls
30 lines (30 loc) · 752 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
28
29
30
env:
browser: true
es2021: true
extends:
- airbnb-typescript/base
- eslint:recommended
- plugin:@typescript-eslint/recommended
- plugin:@typescript-eslint/recommended-requiring-type-checking
plugins:
- eslint-plugin-import
- unused-imports
- "@typescript-eslint"
overrides: []
parser: '@typescript-eslint/parser'
parserOptions:
ecmaVersion: latest
sourceType: module
project: tsconfig.json
rules:
quote-props: off
"@typescript-eslint/quotes":
- error
- double
"@typescript-eslint/no-unused-vars": off
"@typescript-eslint/no-parameter-properties": off
"@typescript-eslint/no-unsafe-member-access": off
"@typescript-eslint/no-explicit-any": off
sort-imports:
- error
- { ignoreDeclarationSort: true }