1
0

pyproject.toml 994 B

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