-
Notifications
You must be signed in to change notification settings - Fork 26
/
.eslintrc.json
57 lines (57 loc) · 1.46 KB
/
.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"root": true,
"ignorePatterns": ["packages/**/*"],
"overrides": [
{
"files": ["*.ts"],
"plugins": ["unused-imports"],
"extends": [
"plugin:@angular-eslint/recommended",
"plugin:@angular-eslint/template/process-inline-templates"
],
"rules": {
"arrow-spacing": "error",
"max-len": [
"error",
{
"code": 140,
"comments": 140,
"ignoreTrailingComments": true,
"ignoreUrls": true,
"ignoreTemplateLiterals": true,
"ignoreRegExpLiterals": true
}
],
"unused-imports/no-unused-imports": "error",
"no-multi-spaces": "error",
"eqeqeq": ["error", "smart"],
"semi": ["error", "always"],
"no-trailing-spaces": "error",
"no-multiple-empty-lines": "error",
"eol-last": ["error", "always"],
"@angular-eslint/no-output-native": "off",
"@angular-eslint/component-selector": [
"error",
{
"prefix": "igo",
"style": "kebab-case",
"type": "element"
}
],
"@angular-eslint/directive-selector": [
"error",
{
"prefix": "igo",
"style": "camelCase",
"type": "attribute"
}
]
}
},
{
"files": ["*.html"],
"extends": ["plugin:@angular-eslint/template/recommended"],
"rules": {}
}
]
}