| ... | ... | @@ -236,7 +236,7 @@ fn fmtPathDir( |
| 236 | 236 | while (try dir_it.next()) |entry| { |
| 237 | 237 | const is_dir = entry.kind == .directory; |
| 238 | 238 | |
| 239 | | if (is_dir and (mem.eql(u8, entry.name, "zig-cache") or mem.eql(u8, entry.name, "zig-out"))) continue; |
| 239 | if (mem.startsWith(u8, entry.name, ".")) continue; |
| 240 | 240 | |
| 241 | 241 | if (is_dir or entry.kind == .file and (mem.endsWith(u8, entry.name, ".zig") or mem.endsWith(u8, entry.name, ".zon"))) { |
| 242 | 242 | const full_path = try fs.path.join(fmt.gpa, &[_][]const u8{ file_path, entry.name }); |