eslint-config-bengler
Advanced tools
Comparing version 0.3.0 to 0.3.1
@@ -133,3 +133,3 @@ module.exports = { | ||
"yoda": 2, // http://eslint.org/docs/rules/yoda | ||
"no-restricted-syntax": [2, "FunctionExpression", "WithStatement"], | ||
"no-restricted-syntax": [2, "WithStatement"], | ||
"no-useless-concat": 2, | ||
@@ -196,3 +196,3 @@ "prefer-arrow-callback": 2, | ||
"no-regex-spaces": 2, | ||
"valid-jsdoc": 1, | ||
"valid-jsdoc": 0, | ||
"valid-typeof": 2, | ||
@@ -276,3 +276,3 @@ // Consider setting this to 1 and setting 'semi' to [2, 'never'] | ||
"max-params": [2, 3], | ||
"max-statements": [2, 10], | ||
"max-statements": [1, 50], | ||
"block-spacing": [2, 'always'], | ||
@@ -279,0 +279,0 @@ "global-require": 0, |
{ | ||
"name": "eslint-config-bengler", | ||
"version": "0.3.0", | ||
"version": "0.3.1", | ||
"description": "Shared eslint configs for Bengler", | ||
@@ -5,0 +5,0 @@ "main": "base.js", |
@@ -15,3 +15,3 @@ // Use this for react projects | ||
"react/no-set-state": 0, // https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/no-set-state.md | ||
"react/jsx-no-literals": 2, | ||
"react/jsx-no-literals": 0, | ||
"react/jsx-indent-props": [2, 2], | ||
@@ -18,0 +18,0 @@ "react/jsx-closing-bracket-location": 1, // Consider undecided. We should gather some experience with this |
21086