eslint-config-jameslnewell
Advanced tools
Comparing version 0.0.9 to 0.0.10
@@ -37,3 +37,12 @@ { | ||
"use-isnan": 2, | ||
"valid-jsdoc": 1, | ||
"valid-jsdoc": [1, { | ||
"prefer": { | ||
"arg": "param", | ||
"argument": "param", | ||
"return": "returns", | ||
"class": "constructor", | ||
"exception": "throws" | ||
}, | ||
"requireReturnDescription": false | ||
}], | ||
"valid-typeof": 2, | ||
@@ -48,3 +57,3 @@ | ||
"dot-notation": 2, | ||
"dot-location": [2, "object"], | ||
"dot-location": [2, "property"], | ||
"eqeqeq": [2, "allow-null"], | ||
@@ -149,3 +158,3 @@ "guard-for-in": 2, | ||
"quotes": [2, "single", "avoid-escape"], | ||
"quote-props": [2, "as-needed"], | ||
"quote-props": [2, "consistent", {"keywords": true}], | ||
"padded-blocks": 0, | ||
@@ -172,3 +181,3 @@ "operator-linebreak": [2, "before"], | ||
"new-cap": 2, | ||
"max-nested-callbacks": [2, 3], | ||
"max-nested-callbacks": [2, 4], //so high to account for mocha's describe() and it() functions | ||
"linebreak-style": [2, "unix"], | ||
@@ -175,0 +184,0 @@ "lines-around-comment": [2, {"beforeBlockComment": true, "afterBlockComment": false, "beforeLineComment": true, "afterLineComment": false}] |
{ | ||
"name": "eslint-config-jameslnewell", | ||
"version": "0.0.9", | ||
"version": "0.0.10", | ||
"description": "ESLint config for how I like to format code - readable with whitespace and semicolons.", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
8516
219