Skip to content

Commit

Permalink
allow PascalCase for modul names (default: snake_case)
Browse files Browse the repository at this point in the history
  • Loading branch information
hmueller01 committed Jun 9, 2024
1 parent 0c9a0c4 commit 4f712f4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .pylintrc.toml
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,8 @@ method-naming-style = "snake_case"
# method-rgx =

# Naming style matching correct module names.
module-naming-style = "snake_case"
#module-naming-style = "snake_case"
module-naming-style = "PascalCase"

# Regular expression matching correct module names. Overrides module-naming-
# style. If left empty, module names will be checked with the set naming style.
Expand Down

0 comments on commit 4f712f4

Please sign in to comment.