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

Disable pylint's `too-many-locals` and `too-many-branches`.

Although both warnings are relevant, the code style choosen for
ansible-freeipa currently require them to be disable.
parent b3a6c9eb
No related branches found
No related tags found
No related merge requests found
......@@ -38,7 +38,9 @@ disable =
missing-function-docstring,
wrong-import-position,
duplicate-code,
broad-except
broad-except,
too-many-branches,
too-many-locals
[pylint.BASIC]
good-names = ex, i, j, k, Run, _, e, x, dn, cn, ip, os, unicode
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment