-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update ci, packages and linting (#116)
* chore: update ci, packages and linting * chore: update packages * chore: lint test * chore: lint src/ * chore: regen inteface * chore(snapshot): 13.0.1-snapshot.0 * chore: package * chore(snapshot): 13.0.1-snapshot.1 * chore: add codeowners * chore: update code owners
- Loading branch information
Showing
108 changed files
with
22,081 additions
and
25,753 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
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
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,24 @@ | ||
module.exports = { | ||
reject: [ | ||
// Upgrading past husky@4 to involves a full config migration with no current and apparent benefit. | ||
// So we are just sticking to husky@4.x.x for the time being. | ||
'husky', | ||
// Caution advised in upgrading redis-mock past 0.52.0. Investigation needed. | ||
'redis-mock', | ||
// Upgrading past redis@3 to the next major version introduces a lot of breaking changes. | ||
'redis', | ||
'@types/redis', | ||
// Upgrading past jest|ts-jest|@types/jest@26 introduces a lot of breaking changes to current tests. | ||
'jest', | ||
'ts-jest', | ||
'@types/jest', | ||
// Upgrading past commander@7 introduces a lot of breaking changes. | ||
'commander', | ||
// Upgrading sqlite past 5.0.2 seems to introduce sh: 1: node-pre-gyp: not found. | ||
// Investigation needed. | ||
'sqlite3', | ||
// Upgrading fido2-lib past @2.8.3 seems to break tests with error message | ||
// `error parsing ASN.1`. Investigation needed. | ||
'fido2-lib' | ||
] | ||
} |
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,7 @@ | ||
module.exports = { | ||
semi: false, | ||
trailingComma: 'none', | ||
singleQuote: true, | ||
printWidth: 120, | ||
tabWidth: 2, | ||
}; |
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,39 @@ | ||
* @kleyow @elnyry-sam-k @lewisdaly @vijayg10 @mdebarros | ||
|
||
# This is a comment. | ||
# Each line is a file pattern followed by one or more owners. | ||
|
||
## These owners will be the default owners for everything in | ||
## the repo. Unless a later match takes precedence, | ||
## @global-owner1 and @global-owner2 will be requested for | ||
## review when someone opens a pull request. | ||
#* @global-owner1 @global-owner2 | ||
|
||
## Order is important; the last matching pattern takes the most | ||
## precedence. When someone opens a pull request that only | ||
## modifies JS files, only @js-owner and not the global | ||
## owner(s) will be requested for a review. | ||
# *.js @js-owner | ||
|
||
## You can also use email addresses if you prefer. They'll be | ||
## used to look up users just like we do for commit author | ||
## emails. | ||
#*.go docs@example.com | ||
|
||
# In this example, @doctocat owns any files in the build/logs | ||
# directory at the root of the repository and any of its | ||
# subdirectories. | ||
# /build/logs/ @doctocat | ||
|
||
## The `docs/*` pattern will match files like | ||
## `docs/getting-started.md` but not further nested files like | ||
## `docs/build-app/troubleshooting.md`. | ||
# docs/* docs@example.com | ||
|
||
## In this example, @octocat owns any file in an apps directory | ||
## anywhere in your repository. | ||
#apps/ @octocat | ||
|
||
## In this example, @doctocat owns any file in the `/docs` | ||
## directory in the root of your repository. | ||
#/docs/ @doctocat |
Oops, something went wrong.