-
Hi, lspconfig.ruby_lsp.setup {
capabilities = capabilities,
init_options = {
formatter = 'standard',
linters = { 'standard' },
indexing = {
excludedPatterns = { '**/tmp/**.rb' }
},
},
... What am I missing? How can I debug this? Thanks in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 3 replies
-
Hello! Is that exactly the glob pattern you are using? If it is, there's a small mistake in it. Using
|
Beta Was this translation helpful? Give feedback.
-
@gacha I'm curious, what kind of |
Beta Was this translation helpful? Give feedback.
-
Hi, 🤦 sorry. I don't know how I miss that. Now, when I fix the pattern to Thanks for your help. |
Beta Was this translation helpful? Give feedback.
-
Hmm, that's strange. I tried to reproduce by adding a file nested within a directory under |
Beta Was this translation helpful? Give feedback.
Hello!
Is that exactly the glob pattern you are using? If it is, there's a small mistake in it. Using
**.rb
is probably not going to match Ruby files, but directories that end with.rb
. You need the pattern to be