.eslintrc.json 399 B

1234567891011121314151617181920
  1. {
  2. "env": {
  3. "commonjs": true,
  4. "es6": true,
  5. "node": true,
  6. "browser": true
  7. },
  8. "extends": "eslint:recommended",
  9. "globals": {
  10. "Atomics": "readonly",
  11. "SharedArrayBuffer": "readonly"
  12. },
  13. "parserOptions": {
  14. "ecmaVersion": 2018
  15. },
  16. "rules": {
  17. "no-console": "off",
  18. "no-async-promise-executor": "off"
  19. }
  20. }