From 29a679fa615be7f3603ec46c6f1387535a436924 Mon Sep 17 00:00:00 2001 From: Apostolos Chalkis Date: Wed, 23 Oct 2024 15:24:03 +0300 Subject: [PATCH] add unknown-option-value as an error message to be ignored by pylint --- .pylintrc | 1 + 1 file changed, 1 insertion(+) diff --git a/.pylintrc b/.pylintrc index 00c2fd1af..dbf8602e3 100644 --- a/.pylintrc +++ b/.pylintrc @@ -71,6 +71,7 @@ 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, [REPORTS]