Disable pending migration notifications #3363
-
Is there a way to disable the pending migration notifications? They're pretty annoying since I know they're pending because most of the time I just created the migration files myself. They just get in the way and block the terminal, and I can't dismiss them via Escape key because it closes the terminal too, so now I gotta move the mouse. |
Beta Was this translation helpful? Give feedback.
Answered by
vinistock
Mar 31, 2025
Replies: 1 comment 1 reply
-
We were indeed missing docs on how to do it. I added the docs and you can disable it with: // Settings for all add-ons
"rubyLsp.addonSettings": {
// Settings for the Rails add-on
"Ruby LSP Rails": {
// Enable prompt for pending migrations
"enablePendingMigrationsPrompt": false
}
} |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
vinistock
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We were indeed missing docs on how to do it. I added the docs and you can disable it with: