Simon Priet e69a613a37 feat: Created a mini nodeJS server with NewMan for testing without PostMan GUI.
This will mimic a run in a CD/CI environment or docker container.
2021-09-08 14:01:19 +02:00

55 lines
897 B
Plaintext

{
"env": {
"browser": true,
"jquery": true,
"mocha": true,
"node": true
},
"globals": {},
"rules": {
"no-multi-str": 2,
"no-debugger": 0,
"strict": 0,
"semi": 0,
"linebreak-style": 0,
"no-bitwise": 2,
"no-cond-assign": 0,
"curly": 2,
"eqeqeq": 0,
"no-eq-null": 0,
"no-eval": 0,
"no-unused-expressions": 0,
"guard-for-in": 0,
"wrap-iife": [
2,
"any"
],
"no-use-before-define": [
2,
{
"functions": false
}
],
"no-loop-func": 2,
"no-caller": 2,
"no-script-url": 2,
"no-shadow": 2,
"no-new-func": 0,
"no-new-wrappers": 0,
"no-undef": 2,
"new-cap": 0,
"no-empty": 2,
"no-new": 0,
"no-ternary": 2,
"no-plusplus": 0,
"dot-notation": 0,
"indent": [
2,
2,
{
"SwitchCase": 1
}
]
}
}