-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat: Cleanup and rationalization (#23)
* feat: add log-level argument * feat: log process args with masking * chore: disable no-await-in-loop globally * chore: remove outdated todo list * chore: handle response logging * feat: fail fast on any SSL error encountered * chore: cleanup todos * feat: move total count to bottom of output * chore: clean up log messages
- Loading branch information
1 parent
7b3dba0
commit c0eb353
Showing
29 changed files
with
253 additions
and
122 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 |
---|---|---|
@@ -1,22 +1,28 @@ | ||
{ | ||
"extends": [ | ||
"oclif", | ||
"oclif-typescript", | ||
"prettier" | ||
], | ||
"rules": { | ||
"no-else-return": "off", | ||
"radix": "off", | ||
"max-params": [ | ||
1, | ||
{ | ||
"max": 8 | ||
} | ||
"extends": [ | ||
"oclif", | ||
"oclif-typescript", | ||
"prettier" | ||
], | ||
"semi": [ | ||
2, | ||
"always" | ||
], | ||
"unicorn/numeric-separators-style": ["error", {"onlyIfContainsSeparator": true }] | ||
} | ||
} | ||
"rules": { | ||
"no-else-return": "off", | ||
"radix": "off", | ||
"no-await-in-loop": "off", | ||
"max-params": [ | ||
1, | ||
{ | ||
"max": 8 | ||
} | ||
], | ||
"semi": [ | ||
2, | ||
"always" | ||
], | ||
"unicorn/numeric-separators-style": [ | ||
"error", | ||
{ | ||
"onlyIfContainsSeparator": 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
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
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
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
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
Oops, something went wrong.