mirror of
https://github.com/chartdb/chartdb.git
synced 2025-10-22 23:01:56 +00:00
46 lines
543 B
Plaintext
46 lines
543 B
Plaintext
# Ignore node_modules and build directories
|
|
node_modules
|
|
dist
|
|
build
|
|
|
|
# Ignore logs
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# Ignore local environment files
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Ignore Dockerfile and Docker Compose files
|
|
Dockerfile
|
|
docker-compose.yml
|
|
|
|
# Ignore git files
|
|
.git
|
|
.gitignore
|
|
|
|
# Ignore IDE and editor settings
|
|
.vscode/
|
|
.idea/
|
|
|
|
# Ignore tests and documentation
|
|
__tests__/
|
|
test/
|
|
tests/
|
|
spec/
|
|
*.md
|
|
|
|
# Ignore temporary files
|
|
*.swp
|
|
*.swo
|
|
*.DS_Store
|
|
*.log
|
|
*.lock
|
|
*.tmp
|
|
|
|
# Ignore coverage output
|
|
coverage
|