alecxe/eslint-plugin-protractor

View on GitHub
.eslintrc.json

Summary

Maintainability
Test Coverage
{
"env": {
"node": true,
"browser": true,
"mocha": true
},
"extends": "eslint:recommended",
"rules": {
"indent": [
"error",
2,
{"SwitchCase": 1}
],
"linebreak-style": [
"error",
"unix"
],
"no-prototype-builtins": "off",
"quotes": [
"error",
"single"
],
"semi": [
"error",
"never"
],
"complexity": [
"error",
{"max": 19}
]
}
}