Skip to content

Commit

Permalink
style(pylint): Update PyLint match Black's defaults
Browse files Browse the repository at this point in the history
Addresses the following linter errors:

    pyproject.toml:1:0: R0022: Useless option value for '--disable', 'C0330' was removed from pylint, see pylint-dev/pylint#3571. (useless-option-value)
    pyproject.toml:1:0: R0022: Useless option value for '--disable', 'C0326' was removed from pylint, see pylint-dev/pylint#3577. (useless-option-value)
  • Loading branch information
rpatterson committed Nov 6, 2022
1 parent 3140ba0 commit 5ddbdf5
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@ extension-pkg-allow-list = ["lxml"]
ignored-classes = ["lxml.etree.QName.localname"]
# Match Black's defaults
# https://black.readthedocs.io/en/stable/guides/using_black_with_other_tools.html#pylint
[tool.pylint.messages_control]
disable = "C0330, C0326"
[tool.pylint.format]
max-line-length = "88"

Expand Down

0 comments on commit 5ddbdf5

Please sign in to comment.