-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.eslintrc.json
74 lines (74 loc) · 1.99 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"root": true,
"ignorePatterns": [
"projects/**/*"
],
"env": {
"browser": true,
"es6": true
},
"overrides": [
{
"files": [
"*.ts"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"parserOptions": {
"project": [
"tsconfig.json"
],
"createDefaultProgram": true,
"ecmaVersion": 2020,
"sourceType": "module"
},
"extends": [
"eslint:recommended",
"airbnb-base",
"airbnb-typescript",
"plugin:import/recommended",
"plugin:import/typescript",
"plugin:@angular-eslint/recommended",
"plugin:@angular-eslint/template/process-inline-templates",
"prettier"
],
"rules": {
"@angular-eslint/directive-selector": [
"error",
{
"type": "attribute",
"prefix": "ch",
"style": "camelCase"
}
],
"@angular-eslint/component-selector": [
"error",
{
"type": "element",
"prefix": "ch",
"style": "kebab-case"
}
],
"require-jsdoc": "off",
"import/prefer-default-export": "off", // our angular components don't use default export
"@typescript-eslint/lines-between-class-members": "off",
"prefer-template": "off", // not sure if we want this
"@typescript-eslint/dot-notation": "off", // for now, fix causes troubles,
"class-methods-use-this": "off", // we have lot's of these, especially all services
"max-classes-per-file": "off", // used for small classes in maybe three files, should maybe use Types for these?
"prefer-destructuring": "off" // not sure if reasonable with typescript, fix loses type information?
}
},
{
"files": [
"*.html"
],
"extends": [
"plugin:@angular-eslint/template/recommended"
],
"rules": {}
}
]
}