Skip to content

Commit

Permalink
feat: pylint: enable W0201 - attribute-defined-outside-init
Browse files Browse the repository at this point in the history
  • Loading branch information
TheRealFalcon committed Feb 16, 2024
1 parent 372db82 commit f138d81
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ jobs=4
[MESSAGES CONTROL]

# Errors and warnings with some filtered:
# W0201(attribute-defined-outside-init)
# W0212(protected-access)
# W0221(arguments-differ)
# W0222(signature-differs)
Expand All @@ -27,7 +26,7 @@ jobs=4
# W1514(unspecified-encoding)
# E0012(bad-option-value)

disable=C, F, I, R, W0201, W0212, W0221, W0222, W0223, W0231, W0311, W0511, W0602, W0603, W0611, W0613, W0621, W0622, W0631, W0703, W1401, W1514, E0012
disable=C, F, I, R, W0212, W0221, W0222, W0223, W0231, W0311, W0511, W0602, W0603, W0611, W0613, W0621, W0622, W0631, W0703, W1401, W1514, E0012


[REPORTS]
Expand Down Expand Up @@ -66,4 +65,3 @@ ignored-classes=argparse.Namespace,optparse.Values,thread._local,ImageManager,Co
# system, and so shouldn't trigger E1101 when accessed. Python regular
# expressions are accepted.
generated-members=types,http.client,command_handlers,m_.*,enter_context

0 comments on commit f138d81

Please sign in to comment.