chromium-dashboard/.eslintrc

33 строки
628 B
Plaintext

{
"extends": "google",
"env": {
"browser": true,
"es6": true
},
"parserOptions": {
"ecmaVersion": 8
},
"rules": {
"no-warning-comments": "off",
"no-unused-vars": ["error", {
"vars": "all",
"args": "after-used",
"argsIgnorePattern": "^var_args$"
}],
"indent": ["error", 2, { "outerIIFEBody": 0, "SwitchCase": 1 }],
"require-jsdoc": 0,
"no-var": 1,
"arrow-parens": 0,
"max-len": [2, 100, {
"ignoreComments": true,
"ignoreUrls": true,
"tabWidth": 2
}],
},
"globals": {
"Polymer": true,
"ga": true,
"Metric": true
}
}