pyproject.toml 284 B

123456789101112131415161718
  1. [tool.black]
  2. exclude= """
  3. /(
  4. salt/ext
  5. | tests/kitchen
  6. | templates
  7. )/
  8. """
  9. [tool.isort]
  10. multi_line_output = 3
  11. include_trailing_comma = true
  12. force_grid_wrap = 0
  13. use_parentheses = true
  14. line_length = 88
  15. ensure_newline_before_comments=true
  16. skip="salt/ext,tests/kitchen,templates"