Skip to content

Commit f387f03

Browse files
committed
Update eslint, tape, semver
1 parent 4487ad0 commit f387f03

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

.eslintrc

+7-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
"eqeqeq": [2],
2525
"func-names": [0],
2626
"func-style": [0, "declaration"],
27+
"generator-star-spacing": [2, "after"],
2728
"global-strict": [0, "never"],
2829
"guard-for-in": [0],
2930
"handle-callback-err": [0],
@@ -36,6 +37,7 @@
3637
"max-statements": [0, 10],
3738
"new-parens": [2],
3839
"new-cap": [2],
40+
"newline-after-var": [0],
3941
"no-alert": [2],
4042
"no-array-constructor": [2],
4143
"no-bitwise": [0],
@@ -44,12 +46,14 @@
4446
"no-cond-assign": [2],
4547
"no-console": [2],
4648
"no-constant-condition": [2],
49+
"no-continue": [2],
4750
"no-control-regex": [2],
4851
"no-debugger": [2],
4952
"no-delete-var": [2],
5053
"no-div-regex": [0],
5154
"no-dupe-args": [2],
5255
"no-dupe-keys": [2],
56+
"no-duplicate-case": [2],
5357
"no-else-return": [0],
5458
"no-empty": [2],
5559
"no-empty-class": [2],
@@ -93,6 +97,7 @@
9397
"no-obj-calls": [2],
9498
"no-octal": [2],
9599
"no-octal-escape": [2],
100+
"no-param-reassign": [2],
96101
"no-path-concat": [0],
97102
"no-plusplus": [0],
98103
"no-process-env": [0],
@@ -129,14 +134,15 @@
129134
"no-wrap-func": [2],
130135
"one-var": [0],
131136
"operator-assignment": [0, "always"],
137+
"operator-linebreak": [2, "after"],
132138
"padded-blocks": [0],
133139
"quote-props": [0],
134140
"radix": [0],
135141
"semi": [2],
136142
"semi-spacing": [2, { "before": false, "after": true }],
137143
"sort-vars": [0],
138144
"space-after-keywords": [2, "always"],
139-
"space-before-function-parentheses": [2, { "anonymous": "always", "named": "never" }],
145+
"space-before-function-paren": [2, { "anonymous": "always", "named": "never" }],
140146
"space-before-blocks": [0, "always"],
141147
"space-in-brackets": [0, "never", {
142148
"singleValue": true,

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@
3333
],
3434
"dependencies": {},
3535
"devDependencies": {
36-
"tape": "^3.5.0",
36+
"tape": "^4.0.0",
3737
"covert": "^1.0.1",
3838
"jscs": "^1.11.3",
3939
"editorconfig-tools": "^0.1.1",
4040
"nsp": "^1.0.1",
41-
"eslint": "^0.17.1",
42-
"semver": "^4.3.1",
41+
"eslint": "^0.19.0",
42+
"semver": "^4.3.3",
4343
"replace": "^0.3.0"
4444
},
4545
"testling": {

0 commit comments

Comments
 (0)