-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #249 from auth0/snyk-qs-ext-dependency-update
Upgrade to Node 18 + qs dependency fixes for Snyk
- Loading branch information
Showing
13 changed files
with
4,992 additions
and
6,417 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
export PROVISIONING_TICKET='<provisioning ticket>' | ||
export NODE_TLS_REJECT_UNAUTHORIZED='0' | ||
export LDAP_URL='ldap://openldap' | ||
export LDAP_BASE='DC=example,DC=org' | ||
export LDAP_BIND_USER='cn=admin,dc=example,dc=org' | ||
export LDAP_BIND_PASSWORD=admin | ||
export LDAP_SEARCH_QUERY='(&(objectCategory=person)(anr={0}))' | ||
// export LDAP_SEARCH_QUERY='(&(objectClass=inetOrgPerson)(|(cn={0})(givenName={0})(sn={0})(uid={0})))' | ||
export LDAP_SEARCH_ALL_QUERY='(objectClass=inetOrgPerson)' | ||
export LDAP_SEARCH_GROUPS='(&(objectClass=posixGroup)(memberUid={0}))' | ||
export LDAP_USER_BY_NAME='(cn={0})' | ||
export ENABLE_WRITE_BACK=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
module.exports = { | ||
env: { | ||
browser: true, | ||
commonjs: true, | ||
es2021: true, | ||
}, | ||
extends: 'eslint:recommended', | ||
overrides: [ | ||
{ | ||
env: { | ||
node: true, | ||
}, | ||
files: ['.eslintrc.{js,cjs}'], | ||
parserOptions: { | ||
sourceType: 'script', | ||
}, | ||
}, | ||
], | ||
parserOptions: { | ||
ecmaVersion: 'latest', | ||
}, | ||
rules: { | ||
indent: ['error', 2], | ||
'linebreak-style': ['error', 'unix'], | ||
quotes: ['error', 'single'], | ||
semi: ['error', 'always'], | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
registry=https://registry.npmjs.org/ |
Oops, something went wrong.