diff options
author | pommicket <pommicket@gmail.com> | 2025-09-17 00:57:40 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2025-09-17 00:57:45 -0400 |
commit | 72a54324836f8ca4d102a2e5ba46093f127d8cfa (patch) | |
tree | d3cebaab40f9645c42fb28ec1821dacd2652a271 /pylintrc.toml | |
parent | ea1f2121389569d5e0addf8066bca9bf24174c16 (diff) |
More parsing
Diffstat (limited to 'pylintrc.toml')
-rw-r--r-- | pylintrc.toml | 11 |
1 files changed, 9 insertions, 2 deletions
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 |