Skip to content

Commit

Permalink
Remove options to fix pylint Unknown option value warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
nzlosh committed Mar 29, 2024
1 parent ddf4fbb commit de424bd
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions lint-configs/python/.pylintrc
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
[MESSAGES CONTROL]
# C0111 Missing docstring
# I0011 Warning locally suppressed using disable-msg
# I0012 Warning locally suppressed using disable-msg
# W0704 Except doesn't do anything Used when an except clause does nothing but "pass" and there is no "else" clause
# W0142 Used * or * magic* Used when a function or method is called using *args or **kwargs to dispatch arguments.
# W0212 Access to a protected member %s of a client class
# W0232 Class has no __init__ method Used when a class has no __init__ method, neither its parent classes.
Expand All @@ -18,7 +16,7 @@
# E0211: Method has no argument
# E1128: Assigning to function call which only returns None Used when an assignment is done on a function call but the inferred function returns nothing but None.
# E1129: Context manager ‘%s’ doesn’t implement __enter__ and __exit__. Used when an instance in a with statement doesn’t implement the context manager protocol(__enter__/__exit__).
disable=C0103,C0111,I0011,I0012,W0704,W0142,W0212,W0232,W0613,W0702,R0201,W0614,R0914,R0912,R0915,R0913,R0904,R0801,not-context-manager,assignment-from-none
disable=C0103,C0111,I0011,W0142,W0212,W0232,W0613,W0702,R0201,W0614,R0914,R0912,R0915,R0913,R0904,R0801,not-context-manager,assignment-from-none

[BASIC]
property-classes=abc.abstractproperty
Expand Down

0 comments on commit de424bd

Please sign in to comment.