Ajout d'un .gitignore universel
This commit is contained in:
75
.gitignore
vendored
75
.gitignore
vendored
@@ -1,43 +1,64 @@
|
|||||||
# Node.js
|
# --- OS / macOS ---
|
||||||
node_modules/
|
.DS_Store
|
||||||
|
.AppleDouble
|
||||||
|
.LSOverride
|
||||||
|
Icon?
|
||||||
|
._*
|
||||||
|
|
||||||
|
# --- Logs & temp ---
|
||||||
|
*.log
|
||||||
npm-debug.log*
|
npm-debug.log*
|
||||||
yarn-debug.log*
|
yarn-debug.log*
|
||||||
yarn-error.log*
|
yarn-error.log*
|
||||||
|
pnpm-debug.log*
|
||||||
# Logs
|
lerna-debug.log*
|
||||||
*.log
|
|
||||||
logs/
|
|
||||||
*.out
|
|
||||||
*.pid
|
*.pid
|
||||||
*.seed
|
*.seed
|
||||||
*.pid.lock
|
*.pid.lock
|
||||||
|
*.tmp
|
||||||
# OS / IDE
|
|
||||||
.DS_Store
|
|
||||||
Thumbs.db
|
|
||||||
.idea/
|
|
||||||
.vscode/
|
|
||||||
*.swp
|
*.swp
|
||||||
*.swo
|
*.swo
|
||||||
|
|
||||||
# Environnements
|
# --- Dependency directories ---
|
||||||
.env
|
node_modules/
|
||||||
.env.local
|
bower_components/
|
||||||
.env.*.local
|
jspm_packages/
|
||||||
|
typings/
|
||||||
|
|
||||||
# Coverage / tests
|
# --- Build outputs ---
|
||||||
coverage/
|
|
||||||
.nyc_output/
|
|
||||||
|
|
||||||
# Build / dist
|
|
||||||
dist/
|
dist/
|
||||||
build/
|
build/
|
||||||
|
.cache/
|
||||||
|
.next/
|
||||||
out/
|
out/
|
||||||
|
coverage/
|
||||||
|
*.tsbuildinfo
|
||||||
|
|
||||||
# DB / data temporaire
|
# --- Docker ---
|
||||||
data/*.sqlite
|
*.pid
|
||||||
data/*.sqlite-journal
|
*.seed
|
||||||
|
*.pid.lock
|
||||||
|
docker-compose.override.yml
|
||||||
|
.env.local
|
||||||
|
.env.development.local
|
||||||
|
.env.test.local
|
||||||
|
.env.production.local
|
||||||
|
|
||||||
# Misc
|
# --- Editors / IDE ---
|
||||||
|
.vscode/
|
||||||
|
.idea/
|
||||||
|
*.sublime-project
|
||||||
|
*.sublime-workspace
|
||||||
|
|
||||||
|
# --- Misc ---
|
||||||
|
*.tgz
|
||||||
*.zip
|
*.zip
|
||||||
*.tar
|
*.tar.gz
|
||||||
|
*.rar
|
||||||
|
*.7z
|
||||||
|
*.bak
|
||||||
|
*.orig
|
||||||
|
*.rej
|
||||||
|
|
||||||
|
# --- Ignore patch zips téléchargés ---
|
||||||
|
supersunday_patch_*.zip
|
||||||
Reference in New Issue
Block a user