Add yapf to Pipenv environment #6
No reviewers
Labels
No Milestone
No project
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: kompetenzinventar/ki-backend#6
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "add-yapf"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
We should ensure that there is one stil of source code formating.
Find ich gut. Ich würde auch später mal sehen Git-Hooks mit reinzunehmen.
Eine Frage hätte ich: Wenn
yapf
PEP8 formatiert und flake8 PEP8 validiert, wieso war es vorher schon gültig? Das sollte auf jeden Fall synchron sein.@ -43,6 +43,13 @@ python -m unittest discover ki
flake8
```
### Formating
Formating
gibt es nicht. Entsprechend dem Rest der DateiFormatierung
oderFormatieren
?Pass ich an.
pep8 gibt viele Möglichkeiten, wie code "richtig" formatiert sein kann. Tools wie yapf oder black sorgen dafür, dass es einheitlich nach einem Stil formatiert ist, welcher pep8 erfüllt. flake8 überprüft noch ein paar andere Sachen, wie z. B. ungenutzte Variablen.
325e680674
tocbf3002b93
Passt, danke für die Erläuterung.