Skip to content
Snippets Groups Projects
Commit 9b6fd8cc authored by Rafael Guterres Jeffman's avatar Rafael Guterres Jeffman
Browse files

pylint: Update configuration for Python 3.11

Update pylint configuration on setup.cfg to cope with recent changes
in Python 3.11.
parent 10b3f461
No related branches found
No related tags found
No related merge requests found
......@@ -59,12 +59,18 @@ disable =
[pylint.BASIC]
good-names =
ex, i, j, k, Run, _, e, x, dn, cn, ip, os, unicode, __metaclass__, ds
ex, i, j, k, Run, _, e, x, dn, cn, ip, os, unicode, __metaclass__, ds,
# These are utils tools, and not part of the released collection.
galaxyfy-playbook, galaxyfy-README, galaxyfy-module-EXAMPLES,
module_EXAMPLES
[pylint.IMPORTS]
ignored-modules =
ansible.errors, ansible.plugins.action,
ansible.module_utils, ansible.module_utils.ansible_freeipa_module,
dns,
gssapi,
ipalib, ipalib.config, ipalib.constants, ipalib.krb_utils, ipalib.errors,
ipapython.ipautil, ipapython.dn, ipapython.version, ipapython.dnsutil,
ipapython.ipa_log_manager, ipapython,
......@@ -72,7 +78,10 @@ ignored-modules =
ipaserver.install.installutils, ipaserver.install.server.install,
ipaserver.install,
ipaclient.install.ipachangeconf, ipaclient.install.client,
ipaserver.dcerpc
ipaserver.dcerpc,
jinja2,
os,
SSSDConfig
[pylint.REFACTORING]
max-nested-blocks = 9
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment