pylintrc 704 B

1234567891011121314151617
  1. [MESSAGES CONTROL]
  2. # Disable the message, report, category or checker with the given id(s).
  3. # TODO(kjellander): Reduce this list to as small as possible.
  4. disable=I0010,I0011,bad-continuation,broad-except,duplicate-code,eval-used,exec-used,fixme,invalid-name,missing-docstring,no-init,no-member,too-few-public-methods,too-many-ancestors,too-many-arguments,too-many-branches,too-many-function-args,too-many-instance-attributes,too-many-lines,too-many-locals,too-many-public-methods,too-many-return-statements,too-many-statements
  5. [REPORTS]
  6. # Don't write out full reports, just messages.
  7. reports=no
  8. [FORMAT]
  9. # We use two spaces for indents, instead of the usual four spaces or tab.
  10. indent-string=' '