Skip to content
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

More lint fixes #279

Merged
merged 1 commit into from
Jan 30, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .nycrc
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@
95
]
}
}
}
40 changes: 20 additions & 20 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
{
"recommendations": [
"dbaeumer.vscode-eslint", // ESLint
"ryu1kn.annotator", // Annotator / Blame
"ms-vscode.atom-keybindings", // Atom Keymap
"shakram02.bash-beautify", // Bash Beautify
"ryanluker.vscode-coverage-gutters", // Coverage Gutters (Code coverage for tests)
"editorconfig.editorconfig", // EditorConfig for VS Code
"github.vscode-pull-request-github", // GitHub Pull Requests and Issues
"eamodio.gitlens", // GitLens — Git supercharged
"xabikos.javascriptsnippets", // JavaScript (ES6) code snippets
"ms-vscode.vscode-typescript-next", // JavaScript and TypeScript Nightly
"shd101wyy.markdown-preview-enhanced", // Markdown Preview Enhanced
"christian-kohler.npm-intellisense", // npm Intellisense (autocompletes npm modules in import statements)
"christian-kohler.path-intellisense", // Path Intellisense (autocompletes filenames)
"robertoachar.vscode-essentials-snippets", // VSCode Essentials Snippets
"codeandstuff.package-json-upgrade", // Package Json Upgrade
"mikestead.dotenv", // DotENV (syntax highlighting for .env files)
"redhat.vscode-yaml" // YAML (Validation, auto completion, formatter, ...)
]
}
"recommendations": [
"dbaeumer.vscode-eslint", // ESLint
"ryu1kn.annotator", // Annotator / Blame
"ms-vscode.atom-keybindings", // Atom Keymap
"shakram02.bash-beautify", // Bash Beautify
"ryanluker.vscode-coverage-gutters", // Coverage Gutters (Code coverage for tests)
"editorconfig.editorconfig", // EditorConfig for VS Code
"github.vscode-pull-request-github", // GitHub Pull Requests and Issues
"eamodio.gitlens", // GitLens — Git supercharged
"xabikos.javascriptsnippets", // JavaScript (ES6) code snippets
"ms-vscode.vscode-typescript-next", // JavaScript and TypeScript Nightly
"shd101wyy.markdown-preview-enhanced", // Markdown Preview Enhanced
"christian-kohler.npm-intellisense", // npm Intellisense (autocompletes npm modules in import statements)
"christian-kohler.path-intellisense", // Path Intellisense (autocompletes filenames)
"robertoachar.vscode-essentials-snippets", // VSCode Essentials Snippets
"codeandstuff.package-json-upgrade", // Package Json Upgrade
"mikestead.dotenv", // DotENV (syntax highlighting for .env files)
"redhat.vscode-yaml" // YAML (Validation, auto completion, formatter, ...)
]
}
40 changes: 20 additions & 20 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Test current file",
"runtimeExecutable": "node",
"runtimeArgs": [
"--test",
"${file}"
],
"cwd": "${workspaceRoot}",
"autoAttachChildProcesses": true,
"restart": true,
"sourceMaps": true,
"stopOnEntry": false,
"console": "integratedTerminal",
}
]
}
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Test current file",
"runtimeExecutable": "node",
"runtimeArgs": [
"--test",
"${file}"
],
"cwd": "${workspaceRoot}",
"autoAttachChildProcesses": true,
"restart": true,
"sourceMaps": true,
"stopOnEntry": false,
"console": "integratedTerminal",
}
]
}
2 changes: 1 addition & 1 deletion renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
"extends": [
"config:recommended"
]
}
}
Loading