chromium-dashboard/.eslintrc

40 строки
810 B
Plaintext

{
"extends": "google",
"env": {
"browser": true,
"es6": true
},
"parser": "@babel/eslint-parser",
"parserOptions": {
"ecmaVersion": 8,
"sourceType": "module"
},
"rules": {
"no-warning-comments": "off",
"no-unused-vars": ["error", {
"vars": "all",
"args": "after-used",
"argsIgnorePattern": "^var_args$"
}],
"indent": [
"error",
2,
{ "outerIIFEBody": 0, "SwitchCase": 1, "ignoredNodes": ["TemplateLiteral > *"] }
],
"require-jsdoc": 0,
"no-var": 1,
"arrow-parens": 0,
"max-len": [2, 100, {
"ignoreComments": true,
"ignoreUrls": true,
"ignoreTemplateLiterals": true,
"ignoreRegExpLiterals": true,
"tabWidth": 2
}],
},
"globals": {
"ga": true,
"Metric": true
}
}