.eslintrc.json 640 B

12345678910111213141516171819202122
  1. {
  2. "extends": "google",
  3. "parserOptions": {
  4. "ecmaVersion": 6
  5. },
  6. "rules": {
  7. "max-len": ["error", 100, {"ignoreUrls": true}],
  8. "quotes": ["error", "single"],
  9. "indent": ["error", 4, {"ArrayExpression": "first",
  10. "ObjectExpression": "first",
  11. "CallExpression": {"arguments": "first"},
  12. "SwitchCase": 1}],
  13. "require-jsdoc": "off",
  14. "new-cap": "off"
  15. },
  16. "plugins": ["html"],
  17. "settings": {
  18. "html/javascript-mime-types": ["text/javascript", "text/code-snippet"],
  19. "html/indent": "0",
  20. "html/report-bad-indent": "error"
  21. }
  22. }