-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Pre-commit demo #148
base: main
Are you sure you want to change the base?
Pre-commit demo #148
Conversation
generateTestToken('v1-promise-namespace'), | ||
'localhost:50051', | ||
ClientSecurity.INSECURE_LOCALHOST_ALLOWED | ||
generateTestToken("v1-promise-namespace"), |
Check failure
Code scanning / CodeQL
Hard-coded credentials Critical
authorization header
generateTestToken('v1-promise-namespace'), | ||
'localhost:50051', | ||
ClientSecurity.INSECURE_LOCALHOST_ALLOWED | ||
generateTestToken("v1-promise-namespace"), |
Check failure
Code scanning / CodeQL
Hard-coded credentials Critical
authorization header
generateTestToken('v1-promise-caveats'), | ||
'localhost:50051', | ||
ClientSecurity.INSECURE_LOCALHOST_ALLOWED | ||
generateTestToken("v1-promise-caveats"), |
Check failure
Code scanning / CodeQL
Hard-coded credentials Critical
authorization header
fullyConsistent: true, | ||
}, | ||
}), | ||
}); | ||
|
||
beforeEach(async () => { | ||
token = generateTestToken('v1-promise-lookup'); | ||
token = generateTestToken("v1-promise-lookup"); |
Check failure
Code scanning / CodeQL
Hard-coded credentials Critical
authorization header
let token: string; | ||
|
||
beforeEach(async () => { | ||
token = generateTestToken('v1-experimental-service'); | ||
token = generateTestToken("v1-experimental-service"); |
Check failure
Code scanning / CodeQL
Hard-coded credentials Critical
Description
Node counterpart to authzed/authzed-py#187. The idea is to both modernize how we're doing linting and provide a standard interface.
Changes
Will annotate.
Testing
Review. See that things go green.