lighthouse/.eslintrc

33 строки
662 B
Plaintext
Исходник Обычный вид История

2016-03-12 02:33:22 +03:00
{
2016-03-12 10:34:10 +03:00
"extends": "google",
"env": {
"node": true
},
"rules": {
2016-03-19 04:10:42 +03:00
"max-len": [2, 100, {
"ignoreComments": true,
"ignoreUrls": true,
"tabWidth": 2
}],
2016-03-12 10:34:10 +03:00
"no-implicit-coercion": [2, {
"boolean": false,
"number": true,
"string": true
}],
"no-unused-expressions": [2, {
"allowShortCircuit": true,
"allowTernary": false
}],
"no-unused-vars": [2, {
"vars": "all",
"args": "after-used",
2016-03-28 22:11:50 +03:00
"argsIgnorePattern": "(^reject$|^_$)",
"varsIgnorePattern": "(^_$)"
2016-03-12 10:34:10 +03:00
}],
"quotes": [2, "single"],
"require-jsdoc": 0,
"valid-jsdoc": 0,
"comma-dangle": 0
2016-03-12 10:34:10 +03:00
}
2016-03-12 02:33:22 +03:00
}