Closed vgoklani closed 1 year ago
Start with reading the README in this project
(and don't add anything to clients
since this package already creates proper configuration for it)
Ive also read the README but still don't get how to disable a rule globally.
Global configuration: Preferences > Package Settings > LSP > Servers > LSP-ruff
What should be added here to disable a list of rules Globally?
I think something like this should work.
{
"initializationOptions": {
"globalSettings": {
"lint.args": [
"--ignore", "F401",
],
},
}
}
Hey there,
Based on this post:
and this in particular:
Where exactly should I put this statement in the sublime config file?
This is my current LSP-config:
Apologies in advance if this is obvious (it most likely is...)