1
0

.eslintrc.json 360 B

1234567891011121314151617181920
  1. {
  2. "env": {
  3. "browser": true,
  4. "es6": true
  5. },
  6. "ignorePatterns": [
  7. "*.min.*"
  8. ],
  9. "extends": "eslint:recommended",
  10. "globals": {
  11. "Atomics": "readonly",
  12. "SharedArrayBuffer": "readonly"
  13. },
  14. "parserOptions": {
  15. "ecmaVersion": 2020
  16. },
  17. "rules": {
  18. "no-unreachable": "off"
  19. }
  20. }