From fb7b6f0dcb297b3b1a6fb985b0db80c2e8206cbb Mon Sep 17 00:00:00 2001 From: Dineshkarthik Date: Sat, 12 Dec 2020 21:42:28 +0100 Subject: [PATCH] add: toml file for black formatter config --- pyproject.toml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..e365c46 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,21 @@ +[tool.black] +line-length = 79 +exclude = ''' +( + /( + \.eggs # exclude a few common directories in the + | \.git # root of the project + | \.hg + | \.mypy_cache + | \.tox + | \.venv + | _build + | buck-out + | build + | dist + | bin + | lib + | include + )/ +) +''' \ No newline at end of file