Improve VSCode extensions/settings

- Use more modern and more useful extensions
- Use the Ruby language server as not doing so is deprecated
This commit is contained in:
Mike McQuaid 2023-07-28 11:09:27 +01:00
parent 3d44b93116
commit 3e355a3089
No known key found for this signature in database
GPG Key ID: 3338A31AFDB1D829
2 changed files with 5 additions and 2 deletions

View File

@ -1,11 +1,13 @@
{ {
"recommendations": [ "recommendations": [
"kaiwood.endwise", "kaiwood.endwise",
"misogi.ruby-rubocop", "lorankloeze.ruby-rubocop-revived",
"rebornix.ruby", "rebornix.ruby",
"wingrunr21.vscode-ruby", "sorbet.sorbet-vscode-extension",
"github.vscode-github-actions",
"timonwong.shellcheck", "timonwong.shellcheck",
"foxundermoon.shell-format", "foxundermoon.shell-format",
"davidanson.vscode-markdownlint",
"editorconfig.editorconfig" "editorconfig.editorconfig"
] ]
} }

View File

@ -6,6 +6,7 @@
"files.trimTrailingWhitespace": true, "files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true, "files.insertFinalNewline": true,
"files.trimFinalNewlines": true, "files.trimFinalNewlines": true,
"ruby.useLanguageServer": true,
"ruby.rubocop.executePath": "Library/Homebrew/shims/gems/", "ruby.rubocop.executePath": "Library/Homebrew/shims/gems/",
"shellcheck.customArgs": [ "shellcheck.customArgs": [
"--shell=bash", "--shell=bash",