rittenhop-ghost/versions/5.94.2/node_modules/superagent/.lib.eslintrc

24 lines
517 B
Plaintext

{
"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"]}]
},
"overrides": [
{
"files": [ "lib/client.js" ],
"globals": {
"ActiveXObject": "readable"
}
}
]
}