From 4712f89f526b0e46089f3c702da0b0439df6e63d Mon Sep 17 00:00:00 2001 From: Moul <moul@moul.re> Date: Sun, 16 Feb 2020 18:42:04 +0200 Subject: [PATCH] [mod] Add pylint rules into pyproject.toml - Do not keep jobs conf, it seems to use all CPU cores without it --- pyproject.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 10f1be11..51323f4c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -39,3 +39,7 @@ mypy = "^0.790" pylint = "^2.6.0" sphinx = "^3.2.1" sphinx_rtd_theme = "^0.5.0" + +[tool.pylint.messages_control] +disable = "C,R0902,R0903,R0904,R0912,R0913,R0914,R0915,W0613" +enable = "C0121,C0202,C0321" -- GitLab