test: update eslint to version 3.9.1 and add enforced indentation on call expression params
This commit is contained in:
parent
0517edaa67
commit
de50f2047d
|
@ -69,7 +69,11 @@
|
||||||
"generator-star-spacing": [2, {"before": false, "after": true}],
|
"generator-star-spacing": [2, {"before": false, "after": true}],
|
||||||
|
|
||||||
// Two space indent
|
// Two space indent
|
||||||
"indent": [2, 2, {"SwitchCase": 1}],
|
"indent": [2, 2, {
|
||||||
|
"SwitchCase": 1,
|
||||||
|
"CallExpression": {"arguments": "first"}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
|
||||||
// Space after colon not before in property declarations
|
// Space after colon not before in property declarations
|
||||||
"key-spacing": [2, {"beforeColon": false, "afterColon": true, "mode": "minimum"}],
|
"key-spacing": [2, {"beforeColon": false, "afterColon": true, "mode": "minimum"}],
|
||||||
|
|
|
@ -19,6 +19,7 @@
|
||||||
"grunt-coveralls": "^1.0.1",
|
"grunt-coveralls": "^1.0.1",
|
||||||
"grunt-replace": "*",
|
"grunt-replace": "*",
|
||||||
"gruntify-eslint": "*",
|
"gruntify-eslint": "*",
|
||||||
|
"eslint": "3.9.1",
|
||||||
"istanbul-lib-instrument": "^1.1.3",
|
"istanbul-lib-instrument": "^1.1.3",
|
||||||
"jsdom": "^9.6.0",
|
"jsdom": "^9.6.0",
|
||||||
"mocha": "^3.1.0",
|
"mocha": "^3.1.0",
|
||||||
|
|
Loading…
Reference in New Issue