From 2524070bd02b1111da4225f5ad46ad5a0394c65a Mon Sep 17 00:00:00 2001 From: Serene-Arc Date: Sat, 3 Dec 2022 15:04:02 +1000 Subject: [PATCH] Add tox configuration for formatting --- tox.ini | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 tox.ini diff --git a/tox.ini b/tox.ini new file mode 100644 index 0000000..e5dce99 --- /dev/null +++ b/tox.ini @@ -0,0 +1,16 @@ +[tox] +envlist = + format + +[testenv:format] +deps = + isort + black +skip_install = True +commands = + isort bdfr tests + black bdfr tests --line-length 120 + +[isort] +profile = black +multi_line_output = 3 \ No newline at end of file