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.

123456789101112131415161718192021
  1. {
  2. "env": {
  3. "browser": true
  4. },
  5. "extends": "eslint:recommended",
  6. "rules": {
  7. "indent": [
  8. "error",
  9. 4
  10. ],
  11. "linebreak-style": [
  12. "error",
  13. "unix"
  14. ],
  15. "quotes": "off",
  16. "semi": [
  17. "error",
  18. "always"
  19. ]
  20. }
  21. }