a request to verify password to externaldap.js logic can come from * cloudron app (via ldapserver.js) * dashboard (via oidc.js) or proxy auth (proxyauth.js) or CLI (accesscontrol.js) the only supported source is the 'cloudron' provider at this point
26 lines
432 B
JSON
26 lines
432 B
JSON
{
|
|
"env": {
|
|
"node": true,
|
|
"es6": true
|
|
},
|
|
"extends": "eslint:recommended",
|
|
"parserOptions": {
|
|
"ecmaVersion": 13
|
|
},
|
|
"rules": {
|
|
"linebreak-style": [
|
|
"error",
|
|
"unix"
|
|
],
|
|
"quotes": [
|
|
"error",
|
|
"single"
|
|
],
|
|
"semi": [
|
|
"error",
|
|
"always"
|
|
],
|
|
"no-console": "off"
|
|
}
|
|
}
|