Lints and suggestions for the Nix programming language
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

ignore `.git` by default

Akshay 045d4ff2 b1c82808

+3
+3
bin/src/dirs.rs
··· 85 85 // add globs from gitignore path as well 86 86 if !unrestricted { 87 87 gitignore.add(&gitignore_path); 88 + 89 + // ignore .git by default, nobody cares about .git, i'm sure 90 + gitignore.add_line(None, ".git")?; 88 91 } 89 92 90 93 for i in ignore {