Why is line-length
not propagating from top-most pyproject.toml
?
#4155
Answered
by
dhruvmanila
jamesbraza
asked this question in
Q&A
-
I have a # pyproject.toml
[tool.ruff]
line-length = 97 I have a # test/pyproject.toml
[tool.ruff]
ignore = [
"S101", # assert gets used in tests
] For some reason, the updated Might this be a bug, or am I missing something? |
Beta Was this translation helpful? Give feedback.
Answered by
dhruvmanila
Apr 30, 2023
Replies: 1 comment
-
You've to explicitly specify to extend the current configuration from another file using |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
charliermarsh
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You've to explicitly specify to extend the current configuration from another file using
extend = 'path/to/pyproject.toml'
.