Last active
October 26, 2024 08:03
-
-
Save maxp/7cf829788044597f368d7d7bf94b660c to your computer and use it in GitHub Desktop.
generic gitignore
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# generic .gitignore | |
# | |
## no hiddens in scm | |
.* | |
## editor backups | |
*~ | |
*.bak | |
*.old | |
*.swp | |
*.tmp | |
## binary output | |
*.[ao] | |
*.l[ao] | |
*.so | |
*.apk | |
*.app | |
*.bin | |
*.dex | |
*.dll | |
*.dylib | |
*.elf | |
*.exe | |
*.lib | |
*.[gp]ch | |
*.py[cod] | |
*.obj | |
*.out | |
## java | |
*.class | |
*.[jerw]ar | |
*.ser | |
## other | |
*.dump | |
*.iml | |
*.lock | |
*.log | |
*.test | |
## build dirs | |
/bin/ | |
/build/ | |
/classes/ | |
/dist/ | |
/target/ | |
/pkg/ | |
/out/ | |
/tmp/ | |
node_modules/ | |
## cache | |
__pycache__/ | |
*.egg-info/ | |
## allow | |
!.clj-kondo/ | |
!.gitignore | |
!.github/ | |
!.git* | |
!.dockerignore | |
!.eslint* | |
!.npmingore | |
!.travis.yml | |
!yarn.lock | |
#. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment