diff --git a/Code/Tools/Pylint/pylint.cfg b/Code/Tools/Pylint/pylint.cfg index 45bc53816b56ed31ae0c707a46246217cedc1172..eec53d4f7b22bdfd67bc5e8f1c30b956fa6be060 100644 --- a/Code/Tools/Pylint/pylint.cfg +++ b/Code/Tools/Pylint/pylint.cfg @@ -45,8 +45,9 @@ load-plugins= # C0326 - Spaces around equality and commas # W0401 - Wildcard imports # R0201 - Method could be used as a function. All algorithms do this in the category method +# R0801 - Similar lines in different files # -disable=W0142,I0011,F0401,W0614,E0602,C0111,C0326,W0401,R0201 +disable=W0142,I0011,F0401,W0614,E0602,C0111,C0326,W0401,R0201,R0801 [REPORTS]