pylama.ini 410 B

12345678910111213141516171819
  1. [pylama]
  2. skip = .eggs/*,.tox/*,*/.env/*,build/*,node_modules/*,_sandbox/*,build/*,docs/conf.py
  3. [pylama:mccabe]
  4. max-complexity = 15
  5. [pylama:pycodestyle]
  6. max_line_length = 100
  7. # E203: whitespace before ':' (for black)
  8. # W503: line break before binary operator (for black)
  9. ignore = E203,W503
  10. [pylama:pylint]
  11. max_line_length = 100
  12. [pylama:*/__init__.py]
  13. # W0611: imported but unused [pyflakes]
  14. ignore = W0611