2021-01-07 02:05:21 -05:00
|
|
|
{
|
2024-08-12 17:36:14 +01:00
|
|
|
"search.exclude": {
|
|
|
|
"Library/Homebrew/vendor/bundle/ruby/": true,
|
|
|
|
"Library/Homebrew/vendor/gems/": true,
|
|
|
|
"Library/Homebrew/vendor/portable-ruby/": true
|
|
|
|
},
|
2021-09-14 15:23:21 +08:00
|
|
|
"editor.insertSpaces": true,
|
|
|
|
"editor.tabSize": 2,
|
2024-08-12 17:36:14 +01:00
|
|
|
"editor.rulers": [
|
|
|
|
80,
|
|
|
|
118
|
|
|
|
],
|
2021-09-14 15:23:21 +08:00
|
|
|
"files.encoding": "utf8",
|
|
|
|
"files.eol": "\n",
|
|
|
|
"files.trimTrailingWhitespace": true,
|
|
|
|
"files.insertFinalNewline": true,
|
|
|
|
"files.trimFinalNewlines": true,
|
2024-08-02 02:18:10 -04:00
|
|
|
"rubyLsp.rubyVersionManager": {
|
|
|
|
"identifier": "custom"
|
|
|
|
},
|
2024-08-12 17:36:14 +01:00
|
|
|
"spellright.language": [
|
|
|
|
"en_GB",
|
|
|
|
"en_US"
|
|
|
|
],
|
|
|
|
"spellright.documentTypes": [
|
|
|
|
"markdown",
|
|
|
|
],
|
2024-08-02 15:52:58 -04:00
|
|
|
"rubyLsp.customRubyCommand": "source ../../.vscode/ruby-lsp-activate.sh",
|
2024-08-02 02:18:10 -04:00
|
|
|
"rubyLsp.bundleGemfile": "Library/Homebrew/Gemfile",
|
2025-08-29 05:32:27 -04:00
|
|
|
"rubyLsp.formatter": "rubocop",
|
2024-08-02 02:18:10 -04:00
|
|
|
"[ruby]": {
|
|
|
|
"editor.defaultFormatter": "Shopify.ruby-lsp",
|
|
|
|
"editor.formatOnSave": true,
|
2024-08-02 15:52:58 -04:00
|
|
|
"editor.formatOnType": true,
|
2024-08-02 02:18:10 -04:00
|
|
|
"editor.semanticHighlighting.enabled": true,
|
|
|
|
},
|
2024-08-02 15:53:18 -04:00
|
|
|
"sorbet.enabled": true,
|
|
|
|
"sorbet.lspConfigs": [
|
|
|
|
{
|
|
|
|
"id": "default",
|
|
|
|
"name": "Brew Typecheck",
|
|
|
|
"description": "Default configuration",
|
|
|
|
"command": [
|
|
|
|
"./bin/brew",
|
|
|
|
"typecheck",
|
|
|
|
"--lsp",
|
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"sorbet.selectedLspConfigId": "default",
|
2021-09-14 15:23:21 +08:00
|
|
|
"shellcheck.customArgs": [
|
|
|
|
"--shell=bash",
|
|
|
|
"--enable=all",
|
|
|
|
"--external-sources",
|
|
|
|
"--source-path=${workspaceFolder}/Library"
|
|
|
|
],
|
2021-10-12 02:12:48 +08:00
|
|
|
"shellformat.effectLanguages": [
|
|
|
|
"shellscript"
|
|
|
|
],
|
|
|
|
"shellformat.path": "${workspaceFolder}/Library/Homebrew/utils/shfmt.sh",
|
2021-11-07 19:53:14 +08:00
|
|
|
"shellformat.flag": "-i 2 -ci -ln bash",
|
|
|
|
"[shellscript]": {
|
|
|
|
"editor.formatOnSave": true,
|
|
|
|
"editor.codeActionsOnSave": {
|
2023-12-21 09:59:43 +00:00
|
|
|
"source.fixAll.shellcheck": "explicit"
|
2021-11-07 19:53:14 +08:00
|
|
|
}
|
2024-08-12 17:36:14 +01:00
|
|
|
},
|
|
|
|
"simplecov-vscode.path": "Library/Homebrew/test/coverage/.resultset.json",
|
|
|
|
"simplecov-vscode.enabled": false
|
2021-01-07 13:27:06 +00:00
|
|
|
}
|