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, {
|
2016-03-17 01:34:03 +03:00
|
|
|
"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
|
|
|
}],
|
2016-03-17 01:34:03 +03:00
|
|
|
"quotes": [2, "single"],
|
2016-03-24 16:07:33 +03:00
|
|
|
"require-jsdoc": 0,
|
2016-08-27 04:06:46 +03:00
|
|
|
"valid-jsdoc": 0,
|
|
|
|
"comma-dangle": 0
|
2016-03-12 10:34:10 +03:00
|
|
|
}
|
2016-03-12 02:33:22 +03:00
|
|
|
}
|