Skip to content

Commit

Permalink
Update eslint, tape, semver
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Apr 19, 2015
1 parent 4487ad0 commit f387f03
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
8 changes: 7 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"eqeqeq": [2],
"func-names": [0],
"func-style": [0, "declaration"],
"generator-star-spacing": [2, "after"],
"global-strict": [0, "never"],
"guard-for-in": [0],
"handle-callback-err": [0],
Expand All @@ -36,6 +37,7 @@
"max-statements": [0, 10],
"new-parens": [2],
"new-cap": [2],
"newline-after-var": [0],
"no-alert": [2],
"no-array-constructor": [2],
"no-bitwise": [0],
Expand All @@ -44,12 +46,14 @@
"no-cond-assign": [2],
"no-console": [2],
"no-constant-condition": [2],
"no-continue": [2],
"no-control-regex": [2],
"no-debugger": [2],
"no-delete-var": [2],
"no-div-regex": [0],
"no-dupe-args": [2],
"no-dupe-keys": [2],
"no-duplicate-case": [2],
"no-else-return": [0],
"no-empty": [2],
"no-empty-class": [2],
Expand Down Expand Up @@ -93,6 +97,7 @@
"no-obj-calls": [2],
"no-octal": [2],
"no-octal-escape": [2],
"no-param-reassign": [2],
"no-path-concat": [0],
"no-plusplus": [0],
"no-process-env": [0],
Expand Down Expand Up @@ -129,14 +134,15 @@
"no-wrap-func": [2],
"one-var": [0],
"operator-assignment": [0, "always"],
"operator-linebreak": [2, "after"],
"padded-blocks": [0],
"quote-props": [0],
"radix": [0],
"semi": [2],
"semi-spacing": [2, { "before": false, "after": true }],
"sort-vars": [0],
"space-after-keywords": [2, "always"],
"space-before-function-parentheses": [2, { "anonymous": "always", "named": "never" }],
"space-before-function-paren": [2, { "anonymous": "always", "named": "never" }],
"space-before-blocks": [0, "always"],
"space-in-brackets": [0, "never", {
"singleValue": true,
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@
],
"dependencies": {},
"devDependencies": {
"tape": "^3.5.0",
"tape": "^4.0.0",
"covert": "^1.0.1",
"jscs": "^1.11.3",
"editorconfig-tools": "^0.1.1",
"nsp": "^1.0.1",
"eslint": "^0.17.1",
"semver": "^4.3.1",
"eslint": "^0.19.0",
"semver": "^4.3.3",
"replace": "^0.3.0"
},
"testling": {
Expand Down

0 comments on commit f387f03

Please sign in to comment.