From 38244f6691cf31834eb8be201f20654a0ab6e25a Mon Sep 17 00:00:00 2001 From: Jensun Ravichandran Date: Sat, 12 Jun 2021 20:41:00 +0200 Subject: [PATCH] Add setup.cfg --- setup.cfg | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 setup.cfg diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..33c1a02 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,15 @@ +[pylint] +disable = + too-many-arguments, + too-few-public-methods, + fixme, + +[pycodestyle] +max-line-length = 79 + +[isort] +multi_line_output = 3 +include_trailing_comma = True +force_grid_wrap = 3 +use_parentheses = True +line_length = 79 \ No newline at end of file