From 4f712f43bf26c4d0cd771ca76222e30ae4ea2432 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Holger=20Mu=CC=88ller?= Date: Sun, 9 Jun 2024 21:21:54 +0200 Subject: [PATCH] allow PascalCase for modul names (default: snake_case) --- .pylintrc.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.pylintrc.toml b/.pylintrc.toml index d7d27af..3de5187 100644 --- a/.pylintrc.toml +++ b/.pylintrc.toml @@ -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.