You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
366 B

  1. {
  2. "extends": [
  3. "eslint:recommended"
  4. ],
  5. "env": {
  6. "node": true,
  7. "mocha": true,
  8. "es6": true
  9. },
  10. "parserOptions": {
  11. "ecmaVersion": 6
  12. },
  13. "rules": {
  14. "comma-dangle": [2, "never"],
  15. "max-len": [2, {
  16. "code": 100,
  17. "tabWidth": 2
  18. }],
  19. "semi": 2,
  20. "keyword-spacing": 2,
  21. "indent": [2, 2, { "SwitchCase": 1 }]
  22. }
  23. }