Skip to content

Commit

Permalink
fix: stop ignoring all files that start with .git
Browse files Browse the repository at this point in the history
  • Loading branch information
chasinglogic committed Oct 28, 2024
1 parent 2bbe3f9 commit e9a4a0a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/profiles/mapping.rs
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,8 @@ impl From<Option<Vec<Mapping>>> for Mapper {
let default_mappings = vec![
Mapping::skip("README.*"),
Mapping::skip("LICENSE"),
Mapping::skip(".gitignore"),
Mapping::skip(".git"),
Mapping::skip(".gitignore$"),
Mapping::skip(".git/?$"),
Mapping::skip(".dfm.yml"),
];
configured.extend(default_mappings);
Expand Down

0 comments on commit e9a4a0a

Please sign in to comment.