Open
Description
Hi, thanks for this awesome extension. Ruff is definitely so much faster.
When I run ruff check
from the terminal, it shows linting errors.
But not on VS code. Nothing. Now sure why. Using the latest version ruff==0.3.2
VS code settings are
{
"editor.tabSize": 2,
"files.trimTrailingWhitespace": true,
"editor.formatOnSave": true,
"[python]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.codeActionsOnSave": {
"source.fixAll": "always",
"source.organizeImports": "always"
}
},
}
Any clues why linting errors aren't highlighted when I open the file in VS code or while I'm typing?