Merge pull request #6868 from svbergerem/eslint-drop-max-nested-callbacks

Eslint drop max nested callbacks and add "=" marker to spaced comment
This commit is contained in:
Dennis Schubert 2016-06-18 10:45:57 +02:00 committed by GitHub
commit c357d229ed

View file

@ -79,7 +79,7 @@
"max-depth": 0,
"max-len": [1, {"code": 120, "ignoreUrls": true}],
"max-lines": 0,
"max-nested-callbacks": [2, {"max": 3}],
"max-nested-callbacks": 0,
"max-params": 0,
"max-statements": 0,
"max-statements-per-line": 0,
@ -242,7 +242,7 @@
"space-in-parens": [2, "never"],
"space-infix-ops": [2, {"int32Hint": true}],
"space-unary-ops": [2, {"words": true, "nonwords": false}],
"spaced-comment": [2, "always"],
"spaced-comment": [2, "always", {"markers": ["="]}],
"strict": 0,
"template-curly-spacing": 0,
"unicode-bom": 0,