Improved ESLint default config

dependabot/npm_and_yarn/BuildServer/eslint-7.2.0
Inga 🏳‍🌈 8 years ago
parent 7b52f941bd
commit ea8648e438
  1. 7
      BuildServer/settings-eslint-browser.json

@ -7,6 +7,11 @@
"rules": { "rules": {
"quotes": ["warn", "double"], "quotes": ["warn", "double"],
"no-var": "off", "no-var": "off",
"require-jsdoc": "off" "require-jsdoc": "off",
"func-names": ["warn", "never"],
"max-len": ["warn", { "code": 140 }],
"operator-linebreak": ["warn", "before"],
"padded-blocks": ["warn", "never"],
"dot-notation": ["warn", { "allowPattern": "^[a-z]+(_[a-z]+)+$" }]
} }
} }
Loading…
Cancel
Save