From 75cdb00e68e23e34a62dec3157ae94fb4f584172 Mon Sep 17 00:00:00 2001 From: Lee Rhodes Date: Wed, 8 Jul 2026 10:36:31 -0700 Subject: [PATCH] Update gitignore --- .gitignore | 93 ++++++++++++++++++++++++++++-------------------------- 1 file changed, 48 insertions(+), 45 deletions(-) diff --git a/.gitignore b/.gitignore index c5825a3a..aaa45989 100644 --- a/.gitignore +++ b/.gitignore @@ -1,75 +1,78 @@ -# ignore .gitignore only in sub module projects -datasketches-memory*/.gitignore - # Eclipse project files -.classpath -.project -.settings/ -.factorypath -.checkstyle +**/.classpath +**/.project +**/.settings/ +**/.factorypath +**/.checkstyle # IntelliJ project files -*.idea/ -*.iml -*.ipr -*.iws +**/.idea/ +**/*.iml +**/*.ipr +**/*.iws # Netbeans project files -nb-configuration.xml +**/nb-configuration.xml # VSCode project files **/.vscode/ # Additional tools -.clover/ +**/.clover/ #OSX files -.DS_Store +**/.DS_Store # Compiler output, class files -*.class -bin +**/*.class +**/bin # Log file -*.log +**/*.log # BlueJ files -*.ctxt +**/*.ctxt # Mobile Tools for Java (J2ME) -.mtj.tmp/ +**/.mtj.tmp/ # Package Files # -*.jar -*.war -*.ear -*.zip -*.tar.gz -*.rar +**/*.jar +**/*.war +**/*.ear +**/*.tar.gz +**/*.rar +**/*.zip # if copying Javadocs into a branch use "git add -f . " # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml -hs_err_pid* +**/hs_err_pid* #Test config and output -test-output/ -local/ -reports/ -.pmd -tmp +**/test-output/ +**/local/ +**/reports/ +**/.pmd +**/tmp +**/*.txt # Build artifacts -target/ -out/ -build/ -jarsIn/ -*.jar -build.xml -*.properties -*.releaseBackup -*.next -*.asc +**/target/ +**/out/ +**/build/ +**/jarsIn/ +**/build.xml +**/*.properties +**/*.releaseBackup +**/*.next +**/*.tag +**/doc/ # This may need to be removed # Jekyll -_site/ -_* -_*/ +**/_site/ +**/_* +**/_*/ + +# Special ignores for this project +# ignore .gitignore only in sub module projects +datasketches-memory*/.gitignore +