forked from adrienverge/posix-read
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
36 lines (33 loc) · 760 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
extends: airbnb/base
env:
browser: false
node: true
mocha: true
ecmaFeatures:
arrowFunctions: true
binaryLiterals: true
blockBindings: true
classes: true
forOf: true
generators: true
objectLiteralShorthandMethods: true
objectLiteralShorthandProperties: true
octalLiterals: true
templateStrings: true
rules:
strict: [2, global]
indent: [2, 4]
no-mixed-spaces-and-tabs: 2
max-len: [2, 80, 4]
quotes: 0
semi: [2, always]
curly: 0
space-before-keywords: 2
space-before-function-paren: [2, {anonymous: always, named: never}]
comma-dangle: 0
camelcase: [2, {properties: always}]
id-length: 0
no-shadow: 0
valid-jsdoc: 1
eol-last: 2
no-multiple-empty-lines: [ 2, { max: 2, maxEOF: 1 } ]