From 698d39f7ad833e95b7de202f743c284f185e5568 Mon Sep 17 00:00:00 2001 From: Matej Focko Date: Sat, 11 Sep 2021 19:15:23 +0200 Subject: [PATCH] docs: Add example configs Add example configs for: - C++ - Haskell - Python Signed-off-by: Matej Focko --- cpp_config.yml | 10 ++++++++++ haskell_config.yml | 10 ++++++++++ python_config.yml | 10 ++++++++++ 3 files changed, 30 insertions(+) create mode 100644 cpp_config.yml create mode 100644 haskell_config.yml create mode 100644 python_config.yml diff --git a/cpp_config.yml b/cpp_config.yml new file mode 100644 index 0000000..e4dc794 --- /dev/null +++ b/cpp_config.yml @@ -0,0 +1,10 @@ +gitea: + instance_url: "http://localhost:8080" + owner: "mfocko" + repository: "testing-repo" + +language: + separate_opening: true + opening: "/**" + continuation: " ** " + closing: " **/\n" \ No newline at end of file diff --git a/haskell_config.yml b/haskell_config.yml new file mode 100644 index 0000000..a8ec22b --- /dev/null +++ b/haskell_config.yml @@ -0,0 +1,10 @@ +gitea: + instance_url: "http://localhost:8080" + owner: "mfocko" + repository: "testing-repo" + +language: + separate_opening: false + opening: "-- #" + continuation: "-- # " + closing: "" \ No newline at end of file diff --git a/python_config.yml b/python_config.yml new file mode 100644 index 0000000..caa4678 --- /dev/null +++ b/python_config.yml @@ -0,0 +1,10 @@ +gitea: + instance_url: "http://localhost:8080" + owner: "mfocko" + repository: "testing-repo" + +language: + separate_opening: false + opening: "##" + continuation: "## " + closing: "" \ No newline at end of file