-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.eslintrc.json
39 lines (39 loc) · 1010 Bytes
/
.eslintrc.json
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
{
"root": true,
"overrides": [
{
"files": "*.ts",
"parserOptions": {
"project": [
"./projects/angular-ecmascript-intl/tsconfig.lib.json",
"./projects/angular-ecmascript-intl/tsconfig.spec.json",
"./projects/angular-intl-demo/tsconfig.app.json"
]
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/strict",
"plugin:@angular-eslint/recommended",
"plugin:@angular-eslint/template/process-inline-templates"
],
"rules": {
"@typescript-eslint/no-extraneous-class": "off",
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "error",
"@typescript-eslint/prefer-literal-enum-member": "off",
"comma-dangle": [
"error",
"always-multiline"
]
}
},
{
"files": "*.html",
"extends": [
"plugin:@angular-eslint/template/recommended"
],
"rules": {
}
}
]
}