summaryrefslogtreecommitdiff
path: root/towncrier.toml
diff options
context:
space:
mode:
authorDudeNr33 <3929834+DudeNr33@users.noreply.github.com>2022-07-17 17:27:45 +0200
committerAndreas Finkler <3929834+DudeNr33@users.noreply.github.com>2022-07-17 18:13:46 +0200
commit36f14989694c64a3fdf7b6f7b44acff3639ad773 (patch)
tree08b9e6caf577efcb53c91bb3831bc6d79a5ebaf5 /towncrier.toml
parent9c7f122c615f118723b696956436e54c8b27e62d (diff)
downloadpylint-git-36f14989694c64a3fdf7b6f7b44acff3639ad773.tar.gz
Add configuration for `towncrier`
Diffstat (limited to 'towncrier.toml')
-rw-r--r--towncrier.toml50
1 files changed, 50 insertions, 0 deletions
diff --git a/towncrier.toml b/towncrier.toml
new file mode 100644
index 000000000..52b4072b3
--- /dev/null
+++ b/towncrier.toml
@@ -0,0 +1,50 @@
+[tool.towncrier]
+version = "2.15.0"
+directory = "doc/whatsnew/fragments"
+filename = "doc/whatsnew/2/2.15/index.rst"
+template = "doc/whatsnew/fragments/_template.rst"
+issue_format = "`#{issue} <https://github.com/PyCQA/pylint/issues/{issue}>`_"
+
+# Definition of fragment types.
+# TODO: with the next towncrier release (21.9.1) it will be possible to define
+# custom types as toml tables:
+# https://github.com/twisted/towncrier#further-options
+[[tool.towncrier.type]]
+directory = "new_check"
+name = "New Checks"
+showcontent = true
+
+[[tool.towncrier.type]]
+directory = "removed_check"
+name = "Removed Checks"
+showcontent = true
+
+[[tool.towncrier.type]]
+directory = "extension"
+name = "Extensions"
+showcontent = true
+
+[[tool.towncrier.type]]
+directory = "false_positive"
+name = "False Positives Fixed"
+showcontent = true
+
+[[tool.towncrier.type]]
+directory = "false_negative"
+name = "False Negatives Fixed"
+showcontent = true
+
+[[tool.towncrier.type]]
+directory = "bugfix"
+name = "Other Bug Fixes"
+showcontent = true
+
+[[tool.towncrier.type]]
+directory = "other"
+name = "Other Changes"
+showcontent = true
+
+[[tool.towncrier.type]]
+directory = "internal"
+name = "Internal Changes"
+showcontent = true