lighthouse
Version:
> Stops you crashing into the rocks; lights the way
36 lines (35 loc) • 695 B
Plain Text
{
"extends": "google",
"env": {
"browser": true
},
"globals": {
"chrome": true,
"__lighthouse": true,
},
"rules": {
"max-len": [2, 100, {
"ignoreComments": true,
"ignoreUrls": true,
"tabWidth": 2
}],
"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",
"argsIgnorePattern": "(^reject$|^_$)"
}],
"quotes": [2, "single"],
"require-jsdoc": 0,
"valid-jsdoc": 0,
"comma-dangle": 0
}
}