forked from AABoyles/MicrobeTrace
-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy path.eslintrc.json
More file actions
28 lines (28 loc) · 835 Bytes
/
.eslintrc.json
File metadata and controls
28 lines (28 loc) · 835 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
{
"root": true,
"ignorePatterns": ["projects/**/*"],
"overrides": [
{
"files": ["*.ts"],
"plugins": ["@typescript-eslint"],
"extends": [
"plugin:@angular-eslint/recommended",
"plugin:@angular-eslint/template/process-inline-templates"
],
"rules": {
"@angular-eslint/contextual-lifecycle": "off",
"@angular-eslint/no-empty-lifecycle-method": "off",
"@angular-eslint/prefer-inject": "off",
"@angular-eslint/prefer-standalone": "off"
}
},
{
"files": ["*.html"],
"extends": ["plugin:@angular-eslint/template/recommended"],
"rules": {
"@angular-eslint/template/eqeqeq": "off",
"@angular-eslint/template/prefer-control-flow": "off"
}
}
]
}