Last active
August 6, 2025 14:07
-
-
Save brunohubner/34bfd45aff6105b0aea3437867e06649 to your computer and use it in GitHub Desktop.
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
| # https://gist.github.com/brunohubner/34bfd45aff6105b0aea3437867e06649 | |
| # Ignore all logfiles and tempfiles. | |
| /log/* | |
| /logs/* | |
| !/log/.keep | |
| !/logs/.keep | |
| !/log/.gitkeep | |
| !/logs/.gitkeep | |
| /tmp | |
| /temp | |
| *.log | |
| *.pid | |
| *.seed | |
| *.pid.lock | |
| *.log.* | |
| *.log-* | |
| *.tmp | |
| *.tmp.* | |
| *.tmp-* | |
| .ignore | |
| *.ignore.* | |
| *.ignore-* | |
| *.old | |
| # Mac files | |
| .DS_Store | |
| .AppleDouble | |
| .LSOverride | |
| # Mac thumbnails | |
| ._* | |
| # Mac files that might appear in the root of a volume | |
| .DocumentRevisions-V100 | |
| .fseventsd | |
| .Spotlight-V100 | |
| .TemporaryItems | |
| .Trashes | |
| .VolumeIcon.icns | |
| .com.apple.timemachine.donotpresent | |
| # Redis binary dump | |
| *.rdb | |
| # Sublime Text - Cache files | |
| *.tmlanguage.cache | |
| *.tmPreferences.cache | |
| *.stTheme.cache | |
| # Sftp configuration file | |
| sftp-config.json | |
| # Other files to ignore | |
| .env | |
| .env.local | |
| .env.*.local | |
| .env.test | |
| .env.test.local | |
| .phpunit.result.cache | |
| .phpunit.result.cache.* | |
| # Windows files | |
| Thumbs.db | |
| Desktop.ini | |
| $RECYCLE.BIN/ | |
| ehthumbs.db | |
| ehthumbs_vista.db | |
| *.stackdump | |
| # XCode | |
| *.xccheckout | |
| *.moved-aside | |
| *.xcuserstate | |
| xcuserdata | |
| *.xcscmblueprint | |
| # Vagrant files | |
| **/.vagrant | |
| **/.vagrant/* | |
| # Solargraph | |
| .solargraph.yml | |
| # PHPStorm | |
| Thumbs.db | |
| .idea | |
| *.iml | |
| *.iws | |
| # ASDF config file | |
| .tool-versions | |
| # Ruby gems | |
| *.gem | |
| *.rbc | |
| /.config | |
| /coverage/ | |
| /InstalledFiles | |
| /pkg/ | |
| /spec/reports/ | |
| # Node | |
| node_modules/ | |
| npm-debug.log* | |
| yarn-debug.log* | |
| yarn-error.log* | |
| # Yarn | |
| .yarn/* | |
| !.yarn/patches | |
| !.yarn/releases | |
| # Visual Studio Code | |
| .vscode/* | |
| !.vscode/settings.json | |
| !.vscode/tasks.json | |
| !.vscode/launch.json | |
| !.vscode/extensions.json | |
| # Python | |
| *.pyc | |
| __pycache__/ | |
| venv/ | |
| ENV/ | |
| env/ | |
| venv.bak/ | |
| env.bak/ | |
| *.egg-info/ | |
| dist/ | |
| build/ | |
| out/ | |
| # Java | |
| *.class | |
| *.war | |
| *.ear | |
| hs_err_pid* | |
| # IntelliJ | |
| *.iml | |
| *.ipr | |
| *.iws | |
| .idea/ | |
| # Ubuntu | |
| *.swp | |
| *.swo | |
| *.swx | |
| *.swpx | |
| # Linux | |
| *~ | |
| # Notepad++ | |
| *.npp | |
| *.npp.bak | |
| *.npp.autosave | |
| # PostgreSQL | |
| *.sql.gz | |
| # Minecraft | |
| minecraft_server.jar | |
| spigot-*.jar | |
| bukkit-*.jar | |
| craftbukkit-*.jar | |
| eula.txt | |
| # Code runner | |
| tempCodeRunnerFile.* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment