develop #3

Merged
Fabel merged 12 commits from develop into main 2025-01-19 21:37:41 +00:00
1 changed files with 5 additions and 4 deletions
Showing only changes of commit ee3dc7da5c - Show all commits

View File

@ -5,15 +5,16 @@
namespace fs = std::filesystem;
bool TreeStructurer::should_ignore_dir(const std::string& dirname) {
return dirname[0] == '.' ||
return dirname[0] == '.' ||
dirname[0] == '_'||
dirname.find("build") != std::string::npos ||
dirname == "venv" ||
dirname == "myenv";
dirname == "myenv" ||
dirname == "build";
}
bool TreeStructurer::should_ignore_file(const std::string& filename) {
return filename[0] == '.' ||
filename.find("build") != std::string::npos;
return filename[0] == '.';
}
std::string TreeStructurer::create_indent(int level) {