Codebase list i18nspector / 34062c19-1c6e-41e2-ace5-8053d20a483c/main .pylintrc
34062c19-1c6e-41e2-ace5-8053d20a483c/main

Tree @34062c19-1c6e-41e2-ace5-8053d20a483c/main (Download .tar.gz)

.pylintrc @34062c19-1c6e-41e2-ace5-8053d20a483c/mainraw · history · blame

[MASTER]
load-plugins = pylint.extensions.check_elif

[MESSAGES CONTROL]
disable =
    bad-builtin,
    bad-continuation,
    bad-option-value,
    duplicate-code,
    fixme,
    inconsistent-return-statements,
    invalid-name,
    len-as-condition,
    locally-disabled,
    locally-enabled,
    no-else-break,
    no-else-continue,
    no-else-raise,
    no-else-return,
    no-self-use,
    raise-missing-from,
    redefined-variable-type,
    subprocess-popen-preexec-fn,
    superfluous-parens,
    too-few-public-methods,
    too-many-arguments,
    too-many-branches,
    too-many-instance-attributes,
    too-many-lines,
    too-many-locals,
    too-many-nested-blocks,
    too-many-public-methods,
    too-many-return-statements,
    too-many-statements,
    use-sequence-for-iteration,

[BASIC]
no-docstring-rgx = .*

[REPORTS]
reports = no
score = no
msg-template = {path}:{line}: {C}: {symbol} [{obj}] {msg}

[FORMAT]
max-line-length = 140
expected-line-ending-format = LF

# vim:ft=dosini ts=4 sts=4 sw=4 et