2021-03-13 21:29:43 +00:00
|
|
|
# yapf
|
|
|
|
|
|
|
|
> Python stijlgidschecker.
|
|
|
|
> Meer informatie: <https://github.com/google/yapf>.
|
|
|
|
|
2024-06-18 21:00:00 +01:00
|
|
|
- Toon de geformateerde diff die zal optreden uit:
|
2021-03-13 21:29:43 +00:00
|
|
|
|
|
|
|
`yapf --diff {{pad/naar/bestand}}`
|
|
|
|
|
2024-06-18 21:00:00 +01:00
|
|
|
- Toon de geformateerde diff uit en breng de wijzigingen aan in het bestand:
|
2021-03-13 21:29:43 +00:00
|
|
|
|
|
|
|
`yapf --diff --in-place {{pad/naar/bestand}}`
|
|
|
|
|
|
|
|
- Formatteer alle Python-bestanden recursief in een map in parallel:
|
|
|
|
|
|
|
|
`yapf --recursive --in-place --style {{pep8}} --parallel {{pad/naar/map}}`
|