forked from swimlane/ngx-graph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.yaml
29 lines (29 loc) · 913 Bytes
/
.eslintrc.yaml
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
root: true
extends:
- '@swimlane'
- prettier
overrides:
- files:
- '*.ts'
parser: '@typescript-eslint/parser'
parserOptions:
project:
- tsconfig.json
createDefaultProgram: true
extends:
- '@swimlane/eslint-config/typescript'
- plugin:@angular-eslint/recommended
- plugin:@angular-eslint/template/process-inline-templates
- prettier
rules:
'@typescript-eslint/no-explicit-any': off
'@typescript-eslint/no-unused-vars': off # should be fixed later
'@angular-eslint/directive-class-suffix': off
'@angular-eslint/component-class-suffix': off
'@typescript-eslint/no-inferrable-types': off
'@angular-eslint/no-input-rename': off
'@angular-eslint/no-output-native': off # This should be fixed in a future release
- files:
- '*.html'
extends:
- plugin:@angular-eslint/template/recommended