move .pylintrc to pyproject

This commit is contained in:
Istvan Ruzman
2020-09-25 09:43:11 +02:00
parent b514e6420f
commit 7e3a5393e4
2 changed files with 4 additions and 8 deletions

View File

@@ -1,6 +0,0 @@
[MASTER]
ignore=tests,examples
[MESSAGES_CONTROL]
disable=bad-continuation,fixme

View File

@@ -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"