Skip to content

Commit

Permalink
chore: cleanup project architecture
Browse files Browse the repository at this point in the history
Signed-off-by: Lexus Drumgold <unicornware@flexdevelopment.llc>
  • Loading branch information
unicornware committed Dec 3, 2022
1 parent 1e27965 commit 625d646
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.base.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ const config = {
{
exemptAsync: false,
exemptGenerators: true,
reportMissingReturnForUndefinedTypes: false
reportMissingReturnForUndefinedTypes: true
}
],
'jsdoc/require-returns-description': 1,
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ on:
description: release tag
required: true
env:
ARTIFACT:
ARTIFACT: |
${{ github.event.inputs.artifact || github.event.release.assets[0].browser_download_url }}
NODE_VERSION: 16
SCOPE: ${{ format('@{0}', github.repository_owner) }}
Expand Down
13 changes: 1 addition & 12 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,6 @@
"[ignore]": {
"editor.defaultFormatter": "foxundermoon.shell-format"
},
"[jest-snapshot]": {
"editor.rulers": [
{
"color": "var(--vscode-editorRuler-foreground)",
"column": 130
}
],
"editor.wordWrapColumn": 130,
"rewrap.wrappingColumn": 130
},
"[markdown]": {
"editor.defaultFormatter": "vscode.markdown-language-features",
"editor.rulers": [
Expand Down Expand Up @@ -121,7 +111,6 @@
"yaml"
],
"files.associations": {
"*.snap": "jest-snapshot",
".env.zsh": "shellscript",
".markdownlintignore": "ignore",
"commit-msg": "shellscript",
Expand Down Expand Up @@ -149,7 +138,7 @@
],
"npm-intellisense.scanDevDependencies": true,
"prettier.enable": false,
"prettier.useEditorConfig": false,
"prettier.useEditorConfig": true,
"shellformat.flag": "-ci -fn -i=2 -sr",
"shellformat.useEditorConfig": true,
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingEmptyBraces": false,
Expand Down
2 changes: 1 addition & 1 deletion __tests__/reporters/notifier.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ class Notifier implements Reporter {
*/
public onInit(context: Vitest): void {
this.ctx = context
this.start = performance.now()
return void (this.start = performance.now())
}

/**
Expand Down

0 comments on commit 625d646

Please sign in to comment.