From c80722c46f22f8fd2ee0f9308baa041b99d0db6a Mon Sep 17 00:00:00 2001 From: Sebastian Tobie Date: Fri, 21 Apr 2023 00:06:09 +0200 Subject: [PATCH] added some editor metadata --- .editorconfig | 12 ++++++++++++ pyproject.toml | 7 +++++++ 2 files changed, 19 insertions(+) create mode 100644 .editorconfig create mode 100644 pyproject.toml diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..c1e2c64 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,12 @@ +# EditorConfig is awesome: https://EditorConfig.org + +# top-most EditorConfig file +root = true + +[*] +indent_style = space +indent_size = 4 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..b65dbad --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,7 @@ +[tool.black] +line-length = 140 + +[tool.isort] +atomic = true +profile = "black" +line_length = 140 \ No newline at end of file