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.

29 lines
512 B

5 years ago
5 years ago
  1. module.exports = {
  2. "env": {
  3. "es6": true,
  4. "node": true,
  5. "mocha": true
  6. },
  7. "parserOptions": {
  8. "ecmaVersion": 2017
  9. },
  10. "extends": "eslint:recommended",
  11. "rules": {
  12. "indent": [
  13. "error",
  14. 4
  15. ],
  16. "linebreak-style": [
  17. "error",
  18. "unix"
  19. ],
  20. "quotes": [
  21. "error",
  22. "double"
  23. ],
  24. "semi": [
  25. "error",
  26. "always"
  27. ]
  28. }
  29. };