.dist.eslintrc 752 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "extends": ["eslint:recommended"],
  3. "env": {
  4. "node": false,
  5. "browser": true,
  6. "amd": true,
  7. "es6": true
  8. },
  9. "plugins": ["compat"],
  10. "rules": {
  11. "compat/compat": "error",
  12. "no-console": "off",
  13. "no-empty": "off",
  14. "no-extra-semi": "off",
  15. "no-func-assign": "off",
  16. "no-undef": "off",
  17. "no-unused-vars": "off",
  18. "no-useless-escape": "off",
  19. "no-cond-assign": "off",
  20. "no-redeclare": "off",
  21. "node/no-exports-assign": "off",
  22. "no-unsafe-finally": "off"
  23. },
  24. "globals": {
  25. "regeneratorRuntime": "writable"
  26. },
  27. "settings": {
  28. "polyfills": [
  29. "Promise",
  30. "Array.from",
  31. "Symbol",
  32. "Object.getOwnPropertySymbols",
  33. "Object.setPrototypeOf",
  34. "Set"
  35. ]
  36. }
  37. }