Skip to content

Commit 8267881

Browse files
committed
update eslint
1 parent f8d02f4 commit 8267881

File tree

5 files changed

+12
-8
lines changed

5 files changed

+12
-8
lines changed

.eslintrc

+2-4
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,12 @@ rules:
2929
use-isnan: 2
3030
valid-typeof: 2
3131
no-unexpected-multiline: 2
32-
no-cond-assign: 2
3332
no-constant-condition: 2
3433
no-control-regex: 2
3534
no-debugger: 2
3635
# code style
3736
consistent-return: 0
38-
curly: 2
37+
curly: [2, "multi-line"]
3938
default-case: 2
4039
dot-notation: 2
4140
dot-location: [2, "property"]
@@ -76,7 +75,6 @@ rules:
7675
quote-props: [2, "as-needed"]
7776
quotes: [2, "single", "avoid-escape"]
7877
semi: [2, "never"]
79-
space-after-keywords: 2
78+
keyword-spacing: 2
8079
space-before-blocks: 2
8180
space-infix-ops: 2
82-
space-return-throw-case: 2

.gitignore

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1-
node_modules
1+
/node_modules/
22
.DS_Store
33
npm-debug.log
4+
build/
5+
coverage/
6+
.nyc_output/

.npmignore

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
example
2-
test
1+
npm-debug.log
32
changelog.md
3+
coverage/
4+
example/
5+
test/
46
.*

.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
language: node_js
22
node_js:
3+
- "stable"
34
- "5"
45
- "4"
56
- "0.12"

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"through2": "^2.0.0"
3434
},
3535
"devDependencies": {
36-
"eslint": "^1.10.1",
36+
"eslint": "^2.0.0",
3737
"tape": "^4.2.2",
3838
"task-tape": "^1.2.2"
3939
}

0 commit comments

Comments
 (0)