Skip to content

Commit

Permalink
Disable no-name-in-module in pylint check
Browse files Browse the repository at this point in the history
GitHub pre-commit workflow has plenty of `no-name-in-modules` false positives.
Which are not happening on my local machine. It will be best to just disable
them as those will be found by unittests.

Signed-off-by: Michal Konecny <[email protected]>
  • Loading branch information
Zlopez committed Feb 15, 2024
1 parent baedf72 commit c3744a6
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,7 @@ disable = [
"inconsistent-return-statements",
"invalid-name",
"no-else-return",
"no-name-in-module",
"no-member",
"redefined-outer-name",
"too-few-public-methods",
Expand Down

0 comments on commit c3744a6

Please sign in to comment.