.eslintrc.json 781 B

123456789101112131415161718192021222324252627
  1. {
  2. "rules": {
  3. "indent": [2, 2, {"SwitchCase": 1, "VariableDeclarator": 2}],
  4. "curly": [2, "all"],
  5. "operator-linebreak": [2, "after"],
  6. "camelcase": [2, {"properties": "never"}],
  7. "quotes": [2, "single"],
  8. "no-multi-str": 2,
  9. "no-mixed-spaces-and-tabs": 2,
  10. "no-trailing-spaces": 2,
  11. "space-unary-ops": [2,
  12. {
  13. "nonwords": false,
  14. "overrides": {}
  15. }
  16. ],
  17. "brace-style": [2, "1tbs", {"allowSingleLine": true}],
  18. "keyword-spacing": [2, {}],
  19. "space-infix-ops": 2,
  20. "space-before-blocks": [2, "always"],
  21. "eol-last": 2,
  22. "space-before-function-paren": [2, "always"],
  23. "array-bracket-spacing": [2, "never", {"singleValue": false}],
  24. "space-in-parens": [2, "never"],
  25. "no-multiple-empty-lines": 2
  26. }
  27. }