From 72a54324836f8ca4d102a2e5ba46093f127d8cfa Mon Sep 17 00:00:00 2001 From: pommicket Date: Wed, 17 Sep 2025 00:57:40 -0400 Subject: More parsing --- pylintrc.toml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'pylintrc.toml') diff --git a/pylintrc.toml b/pylintrc.toml index d7f2d64..ad744ac 100644 --- a/pylintrc.toml +++ b/pylintrc.toml @@ -318,7 +318,7 @@ max-module-lines = 1000 [tool.pylint.imports] # List of modules that can be imported at any level, not just the top level one. -allow-any-import-level = ["boto3", "botocore", "pydo"] +allow-any-import-level = ["copy"] # Allow explicit reexports by alias from a package __init__. # allow-reexport-from-package = @@ -374,7 +374,14 @@ confidence = ["HIGH", "CONTROL_FLOW", "INFERENCE", "INFERENCE_FAILURE", "UNDEFIN # --enable=similarities". If you want to run only the classes checker, but have # no Warning level messages displayed, use "--disable=all --enable=classes # --disable=W". -disable = ["raw-checker-failed", "bad-inline-option", "locally-disabled", "file-ignored", "suppressed-message", "useless-suppression", "deprecated-pragma", "use-implicit-booleaness-not-comparison-to-string", "use-implicit-booleaness-not-comparison-to-zero", "use-symbolic-message-instead"] +disable = ["raw-checker-failed", "bad-inline-option", "locally-disabled", "file-ignored", + "suppressed-message", "useless-suppression", "deprecated-pragma", + "use-implicit-booleaness-not-comparison-to-string", "use-implicit-booleaness-not-comparison-to-zero", + "use-symbolic-message-instead", + "protected-access", # way too strict to be useful + "too-many-return-statements", # who cares? + "too-few-public-methods", # who cares? +] # Enable the message, report, category or checker with the given id(s). You can # either give multiple identifier separated by comma (,) or put this option -- cgit v1.2.3