pyproject.toml 969 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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"
  17. [tool.towncrier]
  18. package = "salt"
  19. filename = "CHANGELOG.md"
  20. directory = "changelog/"
  21. start_string = "# Changelog\n"
  22. [[tool.towncrier.type]]
  23. directory = "removed"
  24. name = "Removed"
  25. showcontent = true
  26. [[tool.towncrier.type]]
  27. directory = "deprecated"
  28. name = "Deprecated"
  29. showcontent = true
  30. [[tool.towncrier.type]]
  31. directory = "changed"
  32. name = "Changed"
  33. showcontent = true
  34. [[tool.towncrier.type]]
  35. directory = "fixed"
  36. name = "Fixed"
  37. showcontent = true
  38. [[tool.towncrier.type]]
  39. directory = "added"
  40. name = "Added"
  41. showcontent = true