forked from btd/sharp-phash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.yml
53 lines (46 loc) · 851 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
---
root: true
extends: eslint:recommended
env:
node: true
mocha: true
es6: true
ecmaVersion: 6
plugins:
- promise
rules:
quotes: 0
indent: 0
require-jsdoc: 0
eqeqeq: 0
curly: 0
no-invalid-this: 0
default-case: 0
no-nested-ternary: 0
no-underscore-dangle: 0
func-style: 0
new-cap: 0
callback-return: 0
no-loop-func: 0
strict: [2, "global"]
semi: [1, "always"]
space-before-function-paren: [1, "never"]
space-before-blocks: [1, "always"]
no-sequences: 2
dot-notation: 1
dot-location: [2, "property"]
keyword-spacing:
- 2
- overrides:
if:
after: false
for:
after: false
while:
after: false
global-require: 2
no-path-concat: 2
promise/param-names: 2
promise/always-return: 0
promise/catch-or-return: 2
promise/no-native: 2