generated from avinay/discord-bot
50 lines
1.3 KiB
Markdown
50 lines
1.3 KiB
Markdown
## 🤖 À propos
|
|
|
|
Ce projet est un bot Discord personnel développé en **Python** avec la librairie **discord.py**.
|
|
Il centralise la gestion et la modération d'un serveur Discord, notamment :
|
|
|
|
- 🛡️ Modération (kick, ban, mute, gestion des rôles...)
|
|
- ⚙️ Utilitaires de gestion du serveur
|
|
|
|
> ⚠️ Projet en cours d'expérimentation — la stabilité n'est pas garantie.
|
|
|
|
---
|
|
|
|
## 📝 Conventions de commits
|
|
|
|
Ce projet suit la convention [Conventional Commits](https://www.conventionalcommits.org/).
|
|
|
|
### Format
|
|
|
|
```
|
|
<type>(<scope>): <description>
|
|
```
|
|
|
|
### Types
|
|
|
|
| Type | Usage |
|
|
|---|---|
|
|
| `feat` | Nouvelle fonctionnalité |
|
|
| `fix` | Correction de bug |
|
|
| `docs` | Documentation uniquement |
|
|
| `style` | Formatage, espaces (pas de logique) |
|
|
| `refactor` | Réécriture sans changer le comportement |
|
|
| `test` | Ajout ou correction de tests |
|
|
| `chore` | Maintenance, dépendances, config |
|
|
|
|
### Exemples
|
|
|
|
```
|
|
feat(mod): add auto-ban on spam detection
|
|
fix(roles): correct permission check on mute command
|
|
docs(readme): update command list
|
|
chore(deps): update discord.py to latest version
|
|
```
|
|
|
|
### Versioning
|
|
|
|
Ce projet suit le [Semantic Versioning](https://semver.org/) : `MAJOR.MINOR.PATCH`
|
|
|
|
- `PATCH` → correction de bug (`fix`)
|
|
- `MINOR` → nouvelle fonctionnalité (`feat`)
|
|
- `MAJOR` → changement cassant (`feat!` ou `fix!`) |