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
Ruff has the options --respect-gitignore (active by default) and --no-respect-gitignore. If running under the latter, ruff check . at the top level of a git repo will start looking into folders like build/, target/, etc (it seems to avoid searching under venv/.venv unless you specifically request them).
Fortitude should behave similarly.
The text was updated successfully, but these errors were encountered:
A complication to this is that there may be nested .gitignore files, so we'll have to add to the set of excluded file patterns as we recurse through directories. It'll probably be best to see how Ruff handles this.
Ruff has the options
--respect-gitignore
(active by default) and--no-respect-gitignore
. If running under the latter,ruff check .
at the top level of a git repo will start looking into folders likebuild/
,target/
, etc (it seems to avoid searching undervenv
/.venv
unless you specifically request them).Fortitude should behave similarly.
The text was updated successfully, but these errors were encountered: