100 lines
2.3 KiB
Plaintext
100 lines
2.3 KiB
Plaintext
# ==============================================================================
|
|
# 1. SPECIFIQUE A TON PROJET (Ce qu'on voit sur le screenshot)
|
|
# ==============================================================================
|
|
# Dossiers de compilation (IntelliJ génère 'out', Eclipse génère 'bin')
|
|
out/
|
|
bin/
|
|
|
|
# Fichiers de configuration de module IntelliJ
|
|
*.iml
|
|
|
|
# Dossier de configuration projet IntelliJ
|
|
# (On ignore tout le dossier car il contient souvent des chemins locaux spécifiques à ta machine)
|
|
.idea/
|
|
|
|
# ==============================================================================
|
|
# 2. JAVA (Standard)
|
|
# ==============================================================================
|
|
# Fichiers compilés
|
|
*.class
|
|
|
|
# Archives packagées
|
|
*.jar
|
|
*.war
|
|
*.nar
|
|
*.ear
|
|
*.zip
|
|
*.tar.gz
|
|
*.rar
|
|
|
|
# Logs et fichiers temporaires
|
|
*.log
|
|
*.lock
|
|
|
|
# ==============================================================================
|
|
# 3. INTELLIJ IDEA (JetBrains) - Le "Overkill" pour être sûr
|
|
# ==============================================================================
|
|
# Couvre IntelliJ, PyCharm, PhpStorm, Android Studio, etc.
|
|
*.iws
|
|
*.ipr
|
|
*.jwks
|
|
.idea_modules/
|
|
|
|
# ==============================================================================
|
|
# 4. ECLIPSE
|
|
# ==============================================================================
|
|
.metadata
|
|
.classpath
|
|
.project
|
|
.settings/
|
|
.loadpath
|
|
.recommenders
|
|
.factorypath
|
|
|
|
# ==============================================================================
|
|
# 5. VISUAL STUDIO CODE
|
|
# ==============================================================================
|
|
.vscode/
|
|
*.code-workspace
|
|
.history/
|
|
|
|
# ==============================================================================
|
|
# 6. SYSTEME D'EXPLOITATION (Mac / Windows / Linux)
|
|
# ==============================================================================
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
.directory
|
|
|
|
# ==============================================================================
|
|
# 7. PYTHON / ANTIGRAVITY (Si jamais tu mélanges des scripts)
|
|
# ==============================================================================
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
venv/
|
|
.env
|
|
.venv
|
|
pip-log.txt |