forked from elastic/elasticsearch-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
41 lines (39 loc) · 781 Bytes
/
.eslintrc
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
---
extends: "@spalger/personal/es6"
env:
node: true
rules:
comma-dangle: off
semi: off
func-names: off
no-var: off
vars-on-top: off
new-cap: off
global-require: off
no-param-reassign: off
padded-blocks: off
brace-style: off
consistent-return: off
default-case: off
dot-notation: off
eqeqeq: warn
max-len: off
no-cond-assign: off
no-console: off
no-else-return: off
no-empty: off
no-restricted-syntax: warn
no-shadow: warn
no-undef: warn
no-underscore-dangle: off
no-unused-expressions: error
no-unused-vars: error
no-use-before-define: off
object-shorthand: off
one-var: off
one-var-declaration-per-line: off
prefer-arrow-callback: off
prefer-rest-params: off
prefer-template: off
quote-props: off
yoda: off