-
-
Notifications
You must be signed in to change notification settings - Fork 70
/
.eslintrc.yml
41 lines (41 loc) · 897 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
root: true
extends: hemera
globals:
Hemera: true
Hp: true
HemeraUtil: true
HemeraSymbols: true
expect: true
UnauthorizedError: true
HemeraTestsuite: true
Sinon: true
CodecPipeline: true
Code: true
overrides:
- files: "packages/**/*.js"
rules:
no-underscore-dangle: off
no-param-reassign: off
prefer-rest-params: off
no-shadow: off
no-else-return: off
guard-for-in: off
func-names: off
- files: "test/**/*.js"
rules:
space-before-function-paren:
- off
global-require: off
func-names: off
no-shadow: off
prefer-const: off
prefer-template: off
prefer-destructuring: off
no-plusplus: off
no-var: off
object-shorthand: off
no-console: off
class-methods-use-this: off
vars-on-top: off
no-unused-vars: off
no-use-before-define: off