-
Notifications
You must be signed in to change notification settings - Fork 2.8k
--verbose mode should print location of project root #1880
Copy link
Copy link
Closed
Labels
C: configurationCLI and configurationCLI and configurationR: not a bugThis is deliberate behavior of Black.This is deliberate behavior of Black.S: acceptedThe changes in this design / enhancement issue have been accepted and can be implementedThe changes in this design / enhancement issue have been accepted and can be implementedT: enhancementNew feature or requestNew feature or request
Metadata
Metadata
Assignees
Labels
C: configurationCLI and configurationCLI and configurationR: not a bugThis is deliberate behavior of Black.This is deliberate behavior of Black.S: acceptedThe changes in this design / enhancement issue have been accepted and can be implementedThe changes in this design / enhancement issue have been accepted and can be implementedT: enhancementNew feature or requestNew feature or request
Fields
Give feedbackNo fields configured for issues without a type.
Describe the bug A clear and concise description of what the bug is.
Black 20.8b1 does not respect skip-string-normalization = true in the pyproject.toml
To Reproduce Steps to reproduce the behavior:
black <filename> --check --difffrom same directory as pyproject.toml (which is root repo dir)Expected behavior A clear and concise description of what you expected to happen.
No changes would be applied by black given our pyproject.toml. Note that if you pass
--configto that same command it works.Environment (please complete the following information):
Does this bug also happen on master? To answer this, you have two options:
Yes with:
Additional context Add any other context about the problem here.
We haven't normalized our strings yet because it's a ~30k line change (we plan to in the coming months). Noting that it seems to be a general "not respecting pyproject.toml" issue but string normalization was the most obvious thing.