Files
zed-sync/scripts/file-exclusions.json

60 lines
1.1 KiB
JSON

{
"defaults": [
"**/.git",
"**/.svn",
"**/.hg",
"**/.jj",
"**/CVS",
"**/.DS_Store",
"**/Thumbs.db",
"**/.classpath",
"**/.settings"
],
"custom": [
"**/.playwright-cli",
"**/output",
"**/.cursor",
"**/.vscode",
"**/.idea",
"**/.fleet",
"**/node_modules",
"**/bun.lockb",
"**/pnpm-lock.yaml",
"**/package-lock.json",
"**/yarn.lock",
"**/dist",
"**/out",
"**/build",
"**/.next",
"**/.nuxt",
"**/.output",
"**/.cache",
"**/.turbo",
"**/.vercel",
"**/.netlify",
"**/tsconfig.tsbuildinfo",
"**/auto-imports.d.ts",
"**/components.json",
"**/unplugin-vue-components.d.ts",
"src/*.d.ts",
"**/__pycache__",
"**/__init__.py",
"**/.ipynb_checkpoints",
"**/.pytest_cache",
"**/.mypy_cache",
"**/.venv",
"**/env",
"**/venv",
"**/.github",
"**/.husky",
"**/.npmrc",
"**/.eslintrc*",
"**/.prettier*",
"**/.editorconfig",
"**/.dockerignore",
"**/docker-compose.override.yml",
"**/cypress*",
"**/prisma/migrations"
]
}