forked from G-Core/product-documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
28 lines (28 loc) · 826 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": ["projects/**/*"],
"parserOptions": {
"ecmaVersion": 2020
},
"overrides": [
{
"files": ["*.ts"],
"parserOptions": {
"project": ["tsconfig.json", "e2e/tsconfig.json"],
"createDefaultProgram": true
},
"extends": "./eslint/index.js",
"rules": {
"@typescript-eslint/no-magic-numbers": "off",
"no-magic-numbers": "off",
"@angular-eslint/no-empty-lifecycle-method": "off",
"@typescript-eslint/member-delimiter-style": "off"
}
},
{
"files": ["*.html"],
"extends": ["plugin:@angular-eslint/template/recommended"],
"rules": {}
}
]
}