From 6aa1f0b84f33bf025ead181225bcdf46f3e59589 Mon Sep 17 00:00:00 2001 From: Apostolos Chalkis Date: Wed, 23 Oct 2024 16:14:22 +0300 Subject: [PATCH] add flags unknown-option-value and too-many-positional-arguments to be ignored by pylint in config file --- .pylintrc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.pylintrc b/.pylintrc index 00c2fd1af..acc2a9e07 100644 --- a/.pylintrc +++ b/.pylintrc @@ -71,6 +71,8 @@ disable=fixme, # disabled as TODOs would show up as warnings no-else-return, # relax "elif" after a clause with a return docstring-first-line-empty, # relax docstring style import-outside-toplevel, + unknown-option-value, + too-many-positional-arguments, [REPORTS]