-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
53 lines (53 loc) · 1.66 KB
/
.eslintrc.js
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
module.exports = {
"root": true,
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
"ignorePatterns": ["*.spec.*", ".eslintrc.js", "karma.conf.js", "protractor.conf.js", "tsconfig.*", "tslint.*", "webpack.*", "node_modules/"],
"overrides": [
{
"files": ["*.ts", "*.js"],
"parserOptions": {
"project": ["tsconfig.json"],
"tsconfigRootDir": __dirname,
"sourceType": "module",
"createDefaultProgram": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@angular-eslint/recommended",
"plugin:@angular-eslint/template/process-inline-templates"
],
"rules": {
"@typescript-eslint/no-explicit-any": "off",
"no-underscore-dangle": "off",
"no-prototype-builtins": "off",
"semi": [2, "never"],
"arrow-body-style": ["off"],
"@typescript-eslint/semi": ["off"],
"@typescript-eslint/ban-types": ["off"],
"@typescriot-eslint/experimental-decorators": ["off"],
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/member-delimiter-style": ["off"],
"@angular-eslint/component-selector": [
"error",
{
"type": "element",
"prefix": "kebab-case"
}
],
"@angular-eslint/directive-selector": [
"error",
{
"type": "attribute",
"prefix": "camelCase"
}
]
}
},
{
"files": ["*.html"],
"extends": ["plugin:@angular-eslint/template/recommended"],
"rules": {}
}
]
}