From 7e3a5393e4ebcc9179ad7acdd72c0439b6ee9999 Mon Sep 17 00:00:00 2001 From: Istvan Ruzman Date: Fri, 25 Sep 2020 09:43:11 +0200 Subject: [PATCH] move .pylintrc to pyproject --- .pylintrc | 6 ------ pyproject.toml | 6 ++++-- 2 files changed, 4 insertions(+), 8 deletions(-) delete mode 100644 .pylintrc diff --git a/.pylintrc b/.pylintrc deleted file mode 100644 index 33d2bf9..0000000 --- a/.pylintrc +++ /dev/null @@ -1,6 +0,0 @@ -[MASTER] -ignore=tests,examples - -[MESSAGES_CONTROL] -disable=bad-continuation,fixme - diff --git a/pyproject.toml b/pyproject.toml index 233f0e0..04ca3e7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -59,7 +59,7 @@ pytest-xdist = "^2.1.0" [tool.black] line-length = 90 include = '\.py' -target-version = ["py37"] +target-version = ["py37", "py38", "py39"] [tool.isort] @@ -69,7 +69,9 @@ line_length = 90 multi_line_output = 3 use_parentheses = true +[tool.pylint.master] +ignore = "tests,examples" [tool.pylint.messages_control] # black is taking care of this -disable = "bad-continuation" +disable = "bad-continuation,fixme"