.eslintrc.json 462 B

123456789101112131415161718192021
  1. {
  2. "parserOptions": {
  3. "ecmaVersion": 2018,
  4. "sourceType": "script",
  5. "ecmaFeatures": {
  6. "impliedStrict": true
  7. }
  8. },
  9. "extends": "eslint:recommended",
  10. "rules": {
  11. "linebreak-style": ["error", "unix"],
  12. "indent": "off",
  13. "quotes": "off",
  14. "semi": "off",
  15. "no-extra-semi": "off",
  16. "no-undef": "off",
  17. "no-unused-vars": "off",
  18. "no-console": "off"
  19. }
  20. }