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
To reproduce:
ruff lint .
Error:
Ruff: Lint failed (ruff failed Cause: Failed to parse /home/.../pyproject.toml Cause: TOML parse error at line 30, column 12 | 30 | [tool.ruff.lint.isort] | ^^^^ unknown field `known_first_party`, expected one of `force-wrap-aliases`, `force-single-line`, `single-line-exclusions`, `combine-as-imports`, `split-on-trailing-comma`, `order-by-type`, `force-sort-within-sections`, `case-sensitive`, `force-to-top`, `known-first-party`, `known-third-party`, `known-local-folder`, `extra-standard-library`, `relative-imports-order`, `required-imports`, `classes`, `constants`, `variables`, `no-lines-before`, `lines-after-imports`, `lines-between-types`, `forced-separate`, `section-order`, `default-section`, `no-sections`, `detect-same-package`, `from-first`, `length-sort`, `length-sort-straight`, `sections` )
It appears that the pyproject.toml ruff configuration setting names are incorrect -- they should use hyphens rather than underscores as separators.
pyproject.toml
https://docs.astral.sh/ruff/configuration/
The text was updated successfully, but these errors were encountered:
Possibly fixed by #387
Sorry, something went wrong.
chrisjkuch
Successfully merging a pull request may close this issue.
To reproduce:
ruff lint .
Error:
It appears that the
pyproject.toml
ruff configuration setting names are incorrect -- they should use hyphens rather than underscores as separators.https://docs.astral.sh/ruff/configuration/
The text was updated successfully, but these errors were encountered: