RockPaperScissors/node_modules/superagent/.lib.eslintrc
2021-12-02 17:22:41 +01:00

25 lines
554 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"]}],
"node/no-exports-assign": "off"
},
"overrides": [
{
"files": [ "lib/client.js" ],
"globals": {
"ActiveXObject": "readable"
}
}
]
}