aboutsummaryrefslogtreecommitdiff
path: root/docs/fr-fr/cli.md
diff options
context:
space:
mode:
authorErovia <Erovia@users.noreply.github.com>2021-07-23 21:41:33 +0100
committerGitHub <noreply@github.com>2021-07-23 21:41:33 +0100
commitfdcea0633657fba4cebcef45eee2f103d162e28c (patch)
tree6d547e2154fa55aea125bc6fc08420c18c8f232a /docs/fr-fr/cli.md
parent164a74a078722cc488526c0c8fcbc4e1b54a5780 (diff)
downloadqmk_firmware-fdcea0633657fba4cebcef45eee2f103d162e28c.tar.gz
qmk_firmware-fdcea0633657fba4cebcef45eee2f103d162e28c.zip
CLI/Docs: Fix the format commands' name (#13668)
PR #13296 changed the name of the `cformat` and `pyformat` commands to `format-c` and `format-py` respectively. This PR updates the documentation and some parts of the CLI to use the new names. Also add documentation for the new `format-text` subcommand, introduced in the same PR.
Diffstat (limited to 'docs/fr-fr/cli.md')
-rw-r--r--docs/fr-fr/cli.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/fr-fr/cli.md b/docs/fr-fr/cli.md
index 428153645..bfa060f2a 100644
--- a/docs/fr-fr/cli.md
+++ b/docs/fr-fr/cli.md
@@ -85,14 +85,14 @@ qmk compile <configuratorExport.json>
85qmk compile -kb <keyboard_name> -km <keymap_name> 85qmk compile -kb <keyboard_name> -km <keymap_name>
86``` 86```
87 87
88## `qmk cformat` 88## `qmk format-c`
89 89
90Cette commande formatte le code C en utilisant clang-format. Lancez-la sans arguments pour formatter tout le code core, ou passez les noms de fichiers à la ligne de commande pour la lancer sur des fichiers spécifiques. 90Cette commande formatte le code C en utilisant clang-format. Lancez-la sans arguments pour formatter tout le code core, ou passez les noms de fichiers à la ligne de commande pour la lancer sur des fichiers spécifiques.
91 91
92**Utilisation**: 92**Utilisation**:
93 93
94``` 94```
95qmk cformat [file1] [file2] [...] [fileN] 95qmk format-c [file1] [file2] [...] [fileN]
96``` 96```
97 97
98## `qmk config` 98## `qmk config`
@@ -125,14 +125,14 @@ Cette commande crée une nouvelle keymap basée sur une keymap par défaut d'un
125qmk new-keymap [-kb KEYBOARD] [-km KEYMAP] 125qmk new-keymap [-kb KEYBOARD] [-km KEYMAP]
126``` 126```
127 127
128## `qmk pyformat` 128## `qmk format-py`
129 129
130Cette commande formate le code python dans `qmk_firmware`. 130Cette commande formate le code python dans `qmk_firmware`.
131 131
132**Utilisation**: 132**Utilisation**:
133 133
134``` 134```
135qmk pyformat 135qmk format-py
136``` 136```
137 137
138## `qmk pytest` 138## `qmk pytest`