Lints and suggestions for the Nix programming language
1
fork

Configure Feed

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

Merge pull request #60 from mtoohey31/patch-1

remove dbg!

authored by

Akshay and committed by
GitHub
a0c7a327 6b490d71

+1 -1
+1 -1
bin/src/config.rs
··· 76 76 .join("\n"); 77 77 Ok(ReadOnlyVfs::singleton("<stdin>", src.as_bytes())) 78 78 } else { 79 - let all_ignores = dbg!([self.ignore.as_slice(), extra_ignores].concat()); 79 + let all_ignores = [self.ignore.as_slice(), extra_ignores].concat(); 80 80 let ignore = dirs::build_ignore_set(&all_ignores, &self.target, self.unrestricted)?; 81 81 let files = dirs::walk_nix_files(ignore, &self.target)?; 82 82 vfs(files.collect::<Vec<_>>())