.eslintrc.json 498 B

1234567891011121314151617181920212223
  1. {
  2. "env": {
  3. "browser": true,
  4. "commonjs": true,
  5. "es6": true,
  6. "node": true
  7. },
  8. "parserOptions": {
  9. "ecmaFeatures": {
  10. "jsx": true
  11. },
  12. "sourceType": "module"
  13. },
  14. "rules": {
  15. "no-const-assign": "warn",
  16. "no-this-before-super": "warn",
  17. "no-undef": "warn",
  18. "no-unreachable": "warn",
  19. "no-unused-vars": "warn",
  20. "constructor-super": "warn",
  21. "valid-typeof": "warn"
  22. }
  23. }