setup.cfg 349 B

123456789101112131415
  1. [flake8]
  2. exclude = build,venv,.tox,.git,.pytest_cache
  3. ignore = E402,E501,E731,E741,W503
  4. max_line_length = 120
  5. per_file_ignores =
  6. devscripts/lazy_load_template.py: F401
  7. [autoflake]
  8. ignore-init-module-imports = true
  9. ignore-pass-after-docstring = true
  10. remove-all-unused-imports = true
  11. remove-duplicate-keys = true
  12. remove-unused-variables = true