forked from hpi-sam/digital-fuesim-manv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
28 lines (28 loc) · 866 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
{
"root": true,
"ignorePatterns": ["index.html", "**/assets/about/*.html"],
"overrides": [
{
"files": ["*.ts", "*.js"],
"parserOptions": {
"project": ["tsconfig.json"],
"createDefaultProgram": true
},
"parser": "@typescript-eslint/parser",
"extends": [
"../.eslint/angular-typescript.eslintrc.cjs",
"../.eslint/typescript.eslintrc.cjs",
"prettier"
]
},
{
"files": ["*.component.html"],
"parserOptions": {
"project": ["tsconfig.json"],
"createDefaultProgram": true
},
"parser": "@angular-eslint/template-parser",
"extends": ["../.eslint/angular-template.eslintrc.cjs"]
}
]
}