-
Notifications
You must be signed in to change notification settings - Fork 2.6k
New issue
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
Black stops looking for config at first pyproject.toml file even if there's no black section in it #2863
Comments
Hi! This is indeed intended behavior. I'm not sure if we should go beyond if we don't find a Black section, but I'm not totally against it either. But would #1826 be enough for your use case? It has an active PR. |
Thanks. I think it would, yes. |
Could you elaborate a bit? The way I see it, #1826 would make the association explicit. If you wanted to leave one of your projects' configuration empty, you can now leave it empty, but you would have to have a |
Hey 👋🏻, Firstly, according to me none of your linked relevant issues is really relevant to this, so that could be edited way. Secondly, yeah for now #2525 (PR for 1826) should work by adding This is also an issue when you are working with mono repo, say you have A possible solution to this would be to go through all the
as the
you check for valid Note: This is only for finding the config, the src root would stay the same as now. Well yeah, this has the same problem as Felix mentioned, where you would need to have an empty black config in case you want to have an empty config. The second solution, I can think of is to have no special case for this and just make the users link |
I feel we should only find the first pyproject.toml in the hierarchy and just error that there is no black config in the file we find. Then the user can fix their repo. I don't think black should do anything clever here. I'm a big KISS (Keep it simple stupid) person. The second solution to allow specifying the config sounds a good middle ground. Am I missing something here? E.g. .flake8 does this, but is more explicit as it uses a non shared config file, but if an an empty / incomplete config file exists it will cause unexpected behaviors ... I'm not saying this is ideal just comparing to other tools in the ecosystem |
Oh, sorry @felix-hilden, I didn't mean the behaviour/solution in #1826. It would improve the current situation and it is explicit (even if slightly more verbose). What I meant was that the assumption that black config is and should be in the first encountered I guess (and I might be entirely off here, so correct me if needed or ignore this paragraph) the problem origins from the facts that (a) mono-repo layouts weren't considered when black was being conceived and (b) back in the day black was one of the few tools that was using On the other hand, it's hard to find consistency in other tools for this behaviour. I personally like the way |
Just looked at how
|
Looks like Where Black looks for the file does not make this special situation (multiple configs) better:
Had that issue just now. I would propose to
|
This issue seems related to #2598 (just came across it) |
I also find it pretty problematic in a monorepo setup:
If Black would scan all the EDIT: I just had a look at #2525 - that should also be fine, I can handle specifying the path during project generation with |
@Shivansh-007 I did a quick test with |
Yeah, that PR is expected to merge sometime soon, it is waiting for @ichard26's review, which would probably be small changes if not an approval. Yeah thanks for looking into that, so it's similar to what I proposed originally. |
@Shivansh-007 any updates? We have already centralised almost all the configs in our monorepo, but |
I have been super busy for the past month or two due to school, so I haven't been able to respond to any of the open projects, so no updates as of now. I just had a look at the PR and looks like it's still waiting for @ichard26's review. |
It doesn't seem like #2525 is going to be merged soon. I'm curious to hear how others are working around this |
Fixes psf#2863 This is pretty desirable in a monorepo situation where you have configuration in the root since it will mean you don't have to reconfigure every project. The good news for backward compatibility is that `find_project_root` continues to stop at any git or hg root, so in all cases repo root coincides with a pyproject.toml missing tool.black, we'll continue to have the project root as before and end up using default config (i.e. we're unlikely to randomly start using the user config). The other thing we need to be a little careful about is that changing find_project_root logic affects what `exclude` is relative to. Since we only change in cases where there is no config, this only applies where users were using `exclude` via command line arg (and had pyproject.toml missing tool.black in a dir that was not repo root). Finally, for the few who could be affected, the fix is to put an empty `[tool.black]` in pyproject.toml
Fixes psf#2863 This is pretty desirable in a monorepo situation where you have configuration in the root since it will mean you don't have to reconfigure every project. The good news for backward compatibility is that `find_project_root` continues to stop at any git or hg root, so in all cases repo root coincides with a pyproject.toml missing tool.black, we'll continue to have the project root as before and end up using default config (i.e. we're unlikely to randomly start using the user config). The other thing we need to be a little careful about is that changing find_project_root logic affects what `exclude` is relative to. Since we only change in cases where there is no config, this only applies where users were using `exclude` via command line arg (and had pyproject.toml missing tool.black in a dir that was not repo root). Finally, for the few who could be affected, the fix is to put an empty `[tool.black]` in pyproject.toml
Fixes #2863 This is pretty desirable in a monorepo situation where you have configuration in the root since it will mean you don't have to reconfigure every project. The good news for backward compatibility is that `find_project_root` continues to stop at any git or hg root, so in all cases repo root coincides with a pyproject.toml missing tool.black, we'll continue to have the project root as before and end up using default config (i.e. we're unlikely to randomly start using the user config). The other thing we need to be a little careful about is that changing find_project_root logic affects what `exclude` is relative to. Since we only change in cases where there is no config, this only applies where users were using `exclude` via command line arg (and had pyproject.toml missing tool.black in a dir that was not repo root). Finally, for the few who could be affected, the fix is to put an empty `[tool.black]` in pyproject.toml
Disclaimer: I was hesitant whether I should report this as a bug or rather a "Feature request".
Describe the bug
In a project dealing with multiple sub-projects in a single repository (aka. mono-repo style) having more than one
pyproject.toml
file confuses black.In our example we wanted to have one top-level black configuration,
while also having sub-project specific
pyproject.toml
files (without any black config) in each sub-directory.Unfortunately, running black on a sub-directory
uses default configuration instead of the one defined in the top-level config file.
To Reproduce
Given this file structure:
With the following contents:
Running black on both test.py files:
Modifies only the file inside
sub2
directory (the one withoutpyproject.toml
file)even though
sub1/pyproject.toml
doesn't contain any black config section.Expected behavior
Both files should be modified
and black should continue looking for a file
that is relevant for its configuration (in this case, the one that has a
[tool.black]
section).Environment
Additional context
A variation of this problem has already been reported in #1826, where the proposed solution is to introduce support for the
config
option inside the sub-project'spyproject.toml
config file.Other (potentially) relevant issues: #2537, #2850.
The text was updated successfully, but these errors were encountered: