salt/pyproject.toml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

49 lines
969 B
TOML
Raw Normal View History

[tool.black]
2020-04-10 14:52:32 -05:00
exclude= """
/(
salt/ext
| tests/kitchen
2020-04-02 20:10:20 -05:00
| templates
)/
2020-04-10 14:52:32 -05:00
"""
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 88
ensure_newline_before_comments=true
skip="salt/ext,tests/kitchen,templates"
2020-04-14 18:37:33 -04:00
[tool.towncrier]
package = "salt"
filename = "CHANGELOG.md"
directory = "changelog/"
start_string = "# Changelog\n"
[[tool.towncrier.type]]
directory = "removed"
name = "Removed"
showcontent = true
[[tool.towncrier.type]]
directory = "deprecated"
name = "Deprecated"
showcontent = true
[[tool.towncrier.type]]
directory = "changed"
name = "Changed"
showcontent = true
[[tool.towncrier.type]]
directory = "fixed"
name = "Fixed"
showcontent = true
[[tool.towncrier.type]]
directory = "added"
name = "Added"
showcontent = true