-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.yml
55 lines (49 loc) · 959 Bytes
/
.eslintrc.yml
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
extends: standard
plugins:
- standard
- promise
- angular
env:
browser: 1
globals:
angular: true
# Remove global config rules when ngConfig or similar implemented instead of global js-variables
domain_organization: true
crossrefuri: true
virtauri: true
demoUser: true
i18n: true
codes: true
field_default_config: true
organizationFieldConfig: true
rules:
angular/module-getter: 1
angular/module-setter: 1
angular/no-private-call: 1
angular/no-cookiestore: 1
angular/no-directive-replace: 1
angular/no-http-callback : 1
angular/di:
- 1
- array
brace-style:
- 1
- stroustrup
no-console: 0
no-unneeded-ternary: 1
no-unused-vars: 1
no-useless-return: 1
no-var: 1
object-curly-spacing:
- 1
- always
prefer-const:
- 1
- destructuring: all
ignoreReadBeforeAssign: false
semi:
- 1
- always
space-before-function-paren: 0
settings:
angular: 1