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.

.dist.eslintrc 707B

1234567891011121314151617181920212223242526272829303132333435
  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. },
  23. "globals": {
  24. "regeneratorRuntime": "writable"
  25. },
  26. "settings": {
  27. "polyfills": [
  28. "Promise",
  29. "Array.from",
  30. "Symbol",
  31. "Object.getOwnPropertySymbols",
  32. "Object.setPrototypeOf"
  33. ]
  34. }
  35. }