@@ -429,8 +429,6 @@ max_allowed_size_uncompressed = '300M'
429429[tool .pylint .main ]
430430disable = [
431431 " abstract-method" , # TODO
432- " arguments-differ" , # TODO
433- " arguments-renamed" , # TODO
434432 " attribute-defined-outside-init" , # TODO
435433 " broad-exception-caught" , # TODO
436434 " c-extension-no-member" ,
@@ -443,7 +441,7 @@ disable = [
443441 " import-outside-toplevel" ,
444442 " invalid-name" , # TODO
445443 " invalid-overridden-method" , # TODO
446- " invalid-str-returned" ,
444+ " invalid-str-returned" , # Most of Django __str__ fails this
447445 " keyword-arg-before-vararg" , # TODO
448446 " line-too-long" ,
449447 " missing-class-docstring" ,
@@ -456,8 +454,6 @@ disable = [
456454 " not-callable" ,
457455 " protected-access" , # TODO
458456 " raising-bad-type" ,
459- " redefined-builtin" , # TODO
460- " redefined-outer-name" , # TODO
461457 " too-few-public-methods" ,
462458 " too-many-ancestors" ,
463459 " too-many-arguments" ,
@@ -471,7 +467,6 @@ disable = [
471467 " too-many-public-methods" ,
472468 " too-many-return-statements" ,
473469 " too-many-statements" ,
474- " unspecified-encoding" , # TODO
475470 " unsubscriptable-object" ,
476471 " unsupported-assignment-operation" , # TODO
477472 " unsupported-binary-operation" ,
@@ -577,7 +572,6 @@ ignore = [
577572 " PLC0415" , # TODO: `import` should be at the top-level of a file
578573 " PLR2004" , # TODO: Magic value used in comparison, consider replacing 201 with a constant variable
579574 " PLR6301" , # TODO: Method could be a function, class method, or static method
580- " PLW1514" , # TODO: `open` in text mode without explicit `encoding` argument
581575 " PLW2901" , # TODO: overwriting variables inside loop
582576 " PT" , # CONFIG: Not using pytest
583577 " PTH" , # TODO: Not using pathlib
0 commit comments