From 334093ad877f6aae65c9474a91003f67a30e4332 Mon Sep 17 00:00:00 2001 From: teridax <72654954+Servostar@users.noreply.github.com> Date: Mon, 5 Jun 2023 17:40:00 +0000 Subject: [PATCH] Update README.md Added reminder for good programming practices for this repo (tb removed later on) --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 90d7ca9..f05ce35 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,12 @@ # Programmentwurf Die Beschreibung der Aufgabenstellung ist unter [Programmentwurf.md](https://github.com/programmieren-mit-rust/programmentwurf/blob/main/Programmentwurf.md) zu finden. Diese `Readme.md` ist durch etwas Sinnvolles zu ersetzen. + +# WICHTIG! +Kleiner reminder, wenn ihr Sachen pushed in das repo, die eurer Anischt nach fertig sind (z.B für einen Pull-Request!), bitte mit den folgenden Commands auf Fehler/Warnings überprüfen: +- `cargo fmt` für formattierung +- `cargo clippy` für warnings +- `cargo test doc` für documentation tests +optional: +- `cargo test` für module tests +- `cargo bench` für benchmarks