From 1358241a612980781bc7f80dec67bc8de74a3903 Mon Sep 17 00:00:00 2001 From: Trygve Aaberge Date: Sat, 19 Nov 2022 21:48:27 +0100 Subject: Add command to add workspace --- pyproject.toml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'pyproject.toml') diff --git a/pyproject.toml b/pyproject.toml index 145896e..ce9df58 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,14 +30,15 @@ ignored-modules = ["weechat"] [tool.pylint."messages control"] disable = [ - "dangerous-default-value", # inconvenient with types + "dangerous-default-value", # inconvenient with types + "inconsistent-return-statements", # no need when using typing "invalid-name", "missing-class-docstring", "missing-function-docstring", "missing-module-docstring", - "no-member", # incorrect reports - "protected-access", # covered by pyright - "too-few-public-methods", # too often bad advice + "no-member", # incorrect reports + "protected-access", # covered by pyright + "too-few-public-methods", # too often bad advice "too-many-arguments", "too-many-instance-attributes", ] -- cgit