You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thank for such a cool tool.
I am currently working with a huge monolithic old code base. I am planning to use a linter like ruff with only new code, so I don't have old errors appearing in thr console. It is possible to create a baseline so only the new code gets lint?
The text was updated successfully, but these errors were encountered:
I think this is a duplicate of #1149. Unfortunately, it's not something we support right now -- maybe some day. The only alternatives you would have are (1) running ruff check --add-noqa /path/to/src to automatically add suppression comments to existing violations, or (2) only enabling a subset of checks for now, and fixing all violations for that subset.
Hi,
Thank for such a cool tool.
I am currently working with a huge monolithic old code base. I am planning to use a linter like ruff with only new code, so I don't have old errors appearing in thr console. It is possible to create a baseline so only the new code gets lint?
The text was updated successfully, but these errors were encountered: