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.

.lib.eslintrc 554B

123456789101112131415161718192021222324
  1. {
  2. "extends": ["eslint:recommended", "plugin:node/recommended"],
  3. "env": {
  4. "browser": true
  5. },
  6. "rules": {
  7. "node/no-deprecated-api": "off",
  8. "no-console": "off",
  9. "no-unused-vars": "off",
  10. "no-empty": "off",
  11. "node/no-unsupported-features/node-builtins": "off",
  12. "no-func-assign": "off",
  13. "no-global-assign": ["error", {"exceptions": ["exports"]}],
  14. "node/no-exports-assign": "off"
  15. },
  16. "overrides": [
  17. {
  18. "files": [ "lib/client.js" ],
  19. "globals": {
  20. "ActiveXObject": "readable"
  21. }
  22. }
  23. ]
  24. }