Created
September 13, 2025 15:27
-
-
Save kumekay/0b20d87f372e643cb6f919701f700e37 to your computer and use it in GitHub Desktop.
syncthing ignore patterns
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
| # ------------------------------ | |
| # OS files | |
| # ------------------------------ | |
| .DS_Store | |
| .AppleDouble | |
| .LSOverride | |
| ._* | |
| .Spotlight-V100 | |
| .Trashes | |
| ehthumbs.db | |
| Thumbs.db | |
| # ------------------------------ | |
| # Python | |
| # ------------------------------ | |
| __pycache__/ | |
| *.py[cod] | |
| *$py.class | |
| .venv/ | |
| venv/ | |
| build/ | |
| dist/ | |
| .eggs/ | |
| *.egg-info/ | |
| .coverage | |
| htmlcov/ | |
| .mypy_cache/ | |
| .pytest_cache/ | |
| .tox/ | |
| # ------------------------------ | |
| # JavaScript / Node | |
| # ------------------------------ | |
| node_modules/ | |
| npm-debug.log* | |
| yarn-debug.log* | |
| yarn-error.log* | |
| .pnpm-store/ | |
| .next/ | |
| .nuxt/ | |
| out/ | |
| coverage/ | |
| dist/ | |
| *.tsbuildinfo | |
| # ------------------------------ | |
| # Logs / Temp | |
| # ------------------------------ | |
| *.log | |
| *.tmp | |
| *.bak | |
| *.swp | |
| *.swo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment