We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I use ruff with include from my shell, its work and ignore all directory and only apply ruff to the include directory.
ruff
include
ruff check --config 'include = ["core/others/"]'
But when I'm going to use include with pre-commit its not working
pre-commit
- repo: https://github.com/astral-sh/ruff-pre-commit # Ruff version. rev: 'v0.2.2' hooks: - id: ruff include: "[core/drones/api_extern/**/*.py]"
But exclude works -
exclude
- repo: https://github.com/astral-sh/ruff-pre-commit # Ruff version. rev: 'v0.2.2' hooks: - id: ruff exclude: "(core/others/)"
I'm using a ruff.toml also where exclude=[...] basing excluding list.
ruff.toml
exclude=[...]
The text was updated successfully, but these errors were encountered:
I have related issue in that I think include is also ignored when it is defined in pyproject.toml or ruff.toml too.
I can confirm exclude works in .toml files.
Sorry, something went wrong.
The include and exclude as mentioned in the PR description are part of pre-commit configuration and not Ruff. But pre-commit doesn't have any include key in that position (https://pre-commit.com/#pre-commit-configyaml---hooks), but it does have files (https://pre-commit.com/#config-files) which might be what you're looking for.
files
Ah okay, I'll check that out. Thanks for the post 👍
No branches or pull requests
When I use
ruff
withinclude
from my shell, its work and ignore all directory and only apply ruff to the include directory.But when I'm going to use
include
withpre-commit
its not workingBut
exclude
works -I'm using a
ruff.toml
also whereexclude=[...]
basing excluding list.The text was updated successfully, but these errors were encountered: