@oxygenhq/mitmproxy-node
Version:
NodeJS mitmproxy adapter.
25 lines • 897 B
JSON
{
"extends": "eslint:recommended",
"env": {
"node": true,
"es6": true
},
"rules": {
"no-console": "off",
"indent": "off",
"indent-legacy": ["error", 4, { "ArrayExpression": "first", "SwitchCase": 1 }],
"quotes": ["error", "single", { "avoidEscape": true }],
"semi": ["error", "always"],
"semi-spacing": ["error", { "before": false, "after": true }],
"no-unused-vars": ["error", { "args": "none" }],
"require-atomic-updates": "off",
"keyword-spacing": ["error", { "before": true, "after": true }],
"space-before-blocks": ["error"],
"no-trailing-spaces": ["error", { "ignoreComments": true }],
"no-multiple-empty-lines": [2, {"max": 1, "maxEOF": 1}]
},
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
}
}