The creeping scourge of tooling config files in project root directories
51–60 of 214 posts
Re: The creeping scourge of tooling config files in project root directories
#52Earlier quoted context omitted.
If everybody had that attitude we'd still be hunting with sticks.
nonsense - files in the root of a directory does not stop progress. What an absurd analogy
Re: The creeping scourge of tooling config files in project root directories
#53Earlier quoted context omitted.
Python is unified on a requirements.txt file with pip, to manage dependencies.
Not "a" requirements.txt file, sadly. I've seen packages with different requirements for building, installing, and testing. All with their own damned txt file. Oh! And don't forget the duplication in setup.py -- you'll want to put your requirements there, too.
Re: The creeping scourge of tooling config files in project root directories
#54I don't get this, what's the problem here? Having config files in root means you know they can apply to all sub directories. This has nice properties like recursive behaviours (see .gitignore) If you want to put (most of) your config files in a .config folder, then most apps should support that If you want to view your config files in a different way, then actually you're trying to solve a different problem. Perhaps…
Suppose this pushes through and .config becomes more of a default than a conscious project choice. I don't see all tooling packages to follow-through immediately with it - causing a period where you still have the scourge of some config files in project root, while others are at .config.
Re: The creeping scourge of tooling config files in project root directories
#55Re: The creeping scourge of tooling config files in project root directories
#56Re: The creeping scourge of tooling config files in project root directories
#57This is a UI problem, not a file location problem. GitHub and VS Code (both M$), could implement a nice way of grouping these files out of the of other files at the tip level.
Re: The creeping scourge of tooling config files in project root directories
#58Re: The creeping scourge of tooling config files in project root directories
#59This is a UI problem, not a file location problem. GitHub and VS Code (both M$), could implement a nice way of grouping these files out of the of other files at the tip level.
Re: The creeping scourge of tooling config files in project root directories
#60Let me organize my repository files however I want and however best fits my project organization.