Skip to content

Commit

Permalink
[excludes] Improve on default exclusions
Browse files Browse the repository at this point in the history
- Add .cer - certificate
- Add .der - digital certificate
- Add .ear - ear archive
- Add .war - war archive
- Add .tar.bz3 - bzip 3
- Add new explicit location to eingore license all together.
  • Loading branch information
hazendaz authored and mathieucarbou committed May 27, 2023
1 parent 77ee9f2 commit 1b163fc
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -173,19 +173,24 @@ private Default() {

// Security files
"**/*.asc",
"**/*.cer",
"**/*.der",
"**/*.jks",
"**/*.keytab",
"**/*.lic",
"**/*.p12",
"**/*.pub",

// binary files - archives
"**/*.ear",
"**/*.jar",
"**/*.war",
"**/*.zip",
"**/*.rar",
"**/*.tar",
"**/*.tar.gz",
"**/*.tar.bz2",
"**/*.tar.bz3",
"**/*.gz",
"**/*.7z",

Expand Down Expand Up @@ -251,6 +256,9 @@ private Default() {
"**/*.docx",
"**/*.ppt",
"**/*.pptx",

// Explicit Folder to Entirely Ignore
"**/unlicensed/**"
};

}

0 comments on commit 1b163fc

Please sign in to comment.