Skip to content

Commit

Permalink
Update eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Jun 11, 2015
1 parent 98a1824 commit 53cb4c5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .eslintrc
Expand Up @@ -8,6 +8,7 @@
},

"rules": {
"accessor-pairs": [2, { getWithoutSet: false, setWithoutGet: true }],
"block-scoped-var": [0],
"brace-style": [2, "1tbs", { "allowSingleLine": true }],
"camelcase": [2],
Expand All @@ -30,6 +31,7 @@
"handle-callback-err": [0],
"key-spacing": [2, { "beforeColon": false, "afterColon": true }],
"linebreak-style": [2, "unix"],
"lines-around-comment": [2, { "beforeBlockComment": false, "afterBlockComment": false, "beforeLineComment": false, "beforeLineComment": false }],
"quotes": [2, "single", "avoid-escape"],
"max-depth": [0, 4],
"max-len": [0, 80, 4],
Expand Down Expand Up @@ -57,7 +59,7 @@
"no-duplicate-case": [2],
"no-else-return": [0],
"no-empty": [2],
"no-empty-class": [2],
"no-empty-character-class": [2],
"no-empty-label": [2],
"no-eq-null": [0],
"no-eval": [2],
Expand Down Expand Up @@ -134,6 +136,7 @@
"no-warning-comments": [0, { "terms": ["todo", "fixme", "xxx"], "location": "start" }],
"no-with": [2],
"no-wrap-func": [2],
"object-curly-spacing": [2, "always"],
"object-shorthand": [2, "never"],
"one-var": [0],
"operator-assignment": [0, "always"],
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -36,7 +36,7 @@
"tape": "^4.0.0",
"covert": "^1.1.0",
"jscs": "^1.13.1",
"eslint": "^0.21.2"
"eslint": "^0.22.1"
},
"testling": {
"files": "test.js",
Expand Down

0 comments on commit 53cb4c5

Please sign in to comment.