Skip to content

Commit

Permalink
Merge pull request #279 from trojs/feature/eslint-trojs
Browse files Browse the repository at this point in the history
More lint fixes
  • Loading branch information
w3nl authored Jan 30, 2025
2 parents 649dc5b + b7edc7e commit ff5bb54
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 42 deletions.
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"
]
}
}

0 comments on commit ff5bb54

Please sign in to comment.