forked from pubnub/javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc.yml
More file actions
34 lines (32 loc) · 781 Bytes
/
.eslintrc.yml
File metadata and controls
34 lines (32 loc) · 781 Bytes
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
extends: airbnb/base
parser: babel-eslint
plugins:
- mocha
- flowtype
rules:
mocha/no-exclusive-tests: 2
flowtype/require-valid-file-annotation: 2
no-else-return: 0
max-len: 0
new-cap: 0
consistent-return: 0
prefer-const: 0
comma-dangle: 0
no-param-reassign: 0
no-underscore-dangle: 0
no-prototype-builtins: 0
import/no-extraneous-dependencies: 0
import/no-useless-path-segments: 0
import/named: 0
class-methods-use-this: 0
no-await-in-loop: 0
no-multi-assign: 0
arrow-parens: [2, "always"]
operator-linebreak: ["error", "after"]
no-mixed-operators: 0
lines-between-class-members: 0
no-multi-spaces: 0
object-curly-newline: 0
prefer-destructuring: 0
no-restricted-globals: 0
space-before-function-paren: ["error", "never"]