123456789101112131415161718192021222324252627 |
- {
- "extends": ["eslint:recommended", "plugin:node/recommended"],
- "env": {
- "browser": true
- },
- "rules": {
- "node/no-deprecated-api": "off",
- "no-console": "off",
- "no-unused-vars": "off",
- "no-empty": "off",
- "node/no-unsupported-features/node-builtins": "off",
- "no-func-assign": "off",
- "no-global-assign": ["error", {"exceptions": ["exports"]}],
- "no-fallthrough": "off",
- "no-constant-condition": "off",
- "node/no-exports-assign": "off",
- "no-unsafe-finally": "off"
- },
- "overrides": [
- {
- "files": [ "lib/client.js" ],
- "globals": {
- "ActiveXObject": "readable"
- }
- }
- ]
- }
|