autoflake, autojump, autopep8: add French translation (#8325)

This commit is contained in:
Nicolas Hansse
2022-08-09 08:52:25 +02:00
committed by GitHub
parent 49c215e6a9
commit 4d73e2c45d
3 changed files with 65 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
# autopep8
> Formate du code Python en accord avec le style PEP 8.
> Plus d'informations : <https://github.com/hhatto/autopep8>.
- Formate une fichier vers la sortie standard, avec une taille de ligne maximal personnalisée :
`autopep8 {{chemin/vers/fichier.py}} --max-line-length {{longueur}}`
- Formate un fichier, en affichant les changements :
`autopep8 --diff {{chemin/vers/fichier}}`
- Formate un fichier et sauvegarde les changements :
`autopep8 --in-place {{chemin/vers/fichier.py}}`
- Formate récursivement les fichiers dans un dossier et sauvegarde les changements :
`autopep8 --in-place --recursive {{chemin/vers/dossier}}`