test: update eslint to version 3.9.1 and add enforced indentation on call expression params

This commit is contained in:
Luca Greco 2016-11-02 20:38:14 +01:00
parent 0517edaa67
commit de50f2047d
2 changed files with 6 additions and 1 deletions

View File

@ -69,7 +69,11 @@
"generator-star-spacing": [2, {"before": false, "after": true}],
// Two space indent
"indent": [2, 2, {"SwitchCase": 1}],
"indent": [2, 2, {
"SwitchCase": 1,
"CallExpression": {"arguments": "first"}
}
],
// Space after colon not before in property declarations
"key-spacing": [2, {"beforeColon": false, "afterColon": true, "mode": "minimum"}],

View File

@ -19,6 +19,7 @@
"grunt-coveralls": "^1.0.1",
"grunt-replace": "*",
"gruntify-eslint": "*",
"eslint": "3.9.1",
"istanbul-lib-instrument": "^1.1.3",
"jsdom": "^9.6.0",
"mocha": "^3.1.0",