Skip to content

Commit

Permalink
Fix glob typo for indexing config (#2708)
Browse files Browse the repository at this point in the history
* Fix glob typo for indexing config

* Fix included patterns glob

Co-authored-by: Andy Waite <andy.waite@shopify.com>

---------

Co-authored-by: Andy Waite <andy.waite@shopify.com>
  • Loading branch information
vinistock and andyw8 authored Oct 11, 2024
1 parent cdb2874 commit 4f553ef
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions vscode/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -469,10 +469,9 @@ To configure indexing, pass a JSON hash as part of the Ruby LSP configuration, f
// PROJECT/.vscode/settings.json
{
"rubyLsp.indexing": {
"excludedPatterns": ["**/test/**.rb"],
"includedPatterns": ["**/bin/**"],
"excludedPatterns": ["**/test/**/*.rb"],
"includedPatterns": ["**/bin/**/*"],
"excludedGems": ["rubocop", "rubocop-performance"],
"includedPatterns": ["rake"],
"excludedMagicComments": ["compiled:true"],
},
}
Expand Down

0 comments on commit 4f553ef

Please sign in to comment.