2018-02-27 19:04:50 +01:00
|
|
|
[tool.towncrier]
|
2022-11-20 02:23:30 +01:00
|
|
|
package = "changes"
|
|
|
|
|
package_dir = ""
|
|
|
|
|
filename = "CHANGELOG"
|
|
|
|
|
directory = "changes/changelog.d/"
|
|
|
|
|
start_string = ".. towncrier\n"
|
|
|
|
|
template = "changes/template.rst"
|
|
|
|
|
issue_format = ""
|
|
|
|
|
title_format = "{version} (unreleased)"
|
|
|
|
|
underlines = "-"
|
2018-02-27 19:04:50 +01:00
|
|
|
|
2022-11-20 02:23:30 +01:00
|
|
|
[[tool.towncrier.section]]
|
|
|
|
|
path = ""
|
2018-02-27 19:04:50 +01:00
|
|
|
|
2023-01-20 09:39:39 +01:00
|
|
|
[[tool.towncrier.type]]
|
|
|
|
|
directory = "update"
|
|
|
|
|
name = "Update instructions"
|
|
|
|
|
showcontent = true
|
|
|
|
|
|
2022-11-20 02:23:30 +01:00
|
|
|
[[tool.towncrier.type]]
|
|
|
|
|
directory = "feature"
|
|
|
|
|
name = "Features"
|
|
|
|
|
showcontent = true
|
2018-02-27 19:04:50 +01:00
|
|
|
|
2022-11-20 02:23:30 +01:00
|
|
|
[[tool.towncrier.type]]
|
|
|
|
|
directory = "enhancement"
|
|
|
|
|
name = "Enhancements"
|
|
|
|
|
showcontent = true
|
2018-04-02 20:04:38 +02:00
|
|
|
|
2022-11-20 02:23:30 +01:00
|
|
|
[[tool.towncrier.type]]
|
|
|
|
|
directory = "refactoring"
|
|
|
|
|
name = "Refactoring"
|
|
|
|
|
showcontent = true
|
2022-10-08 12:51:51 +02:00
|
|
|
|
2022-11-20 02:23:30 +01:00
|
|
|
[[tool.towncrier.type]]
|
|
|
|
|
directory = "bugfix"
|
|
|
|
|
name = "Bugfixes"
|
|
|
|
|
showcontent = true
|
2018-02-27 19:04:50 +01:00
|
|
|
|
2022-11-20 02:23:30 +01:00
|
|
|
[[tool.towncrier.type]]
|
|
|
|
|
directory = "doc"
|
|
|
|
|
name = "Documentation"
|
|
|
|
|
showcontent = true
|
2018-02-27 19:04:50 +01:00
|
|
|
|
2022-11-20 02:23:30 +01:00
|
|
|
[[tool.towncrier.type]]
|
|
|
|
|
directory = "i18n"
|
|
|
|
|
name = "i18n"
|
|
|
|
|
showcontent = true
|
2018-07-04 16:31:29 +00:00
|
|
|
|
2022-11-20 02:23:30 +01:00
|
|
|
[[tool.towncrier.type]]
|
|
|
|
|
directory = "misc"
|
|
|
|
|
name = "Other"
|
|
|
|
|
showcontent = true
|
2019-03-15 12:11:05 +01:00
|
|
|
|
2023-01-22 13:23:28 +01:00
|
|
|
[[tool.towncrier.type]]
|
|
|
|
|
directory = "deprecation"
|
|
|
|
|
name = "Deprecation"
|
|
|
|
|
showcontent = true
|
|
|
|
|
|
2022-11-20 02:23:30 +01:00
|
|
|
[[tool.towncrier.type]]
|
|
|
|
|
directory = "removal"
|
|
|
|
|
name = "Removal"
|
|
|
|
|
showcontent = true
|
2022-01-18 16:11:49 +01:00
|
|
|
|
2019-03-15 12:11:05 +01:00
|
|
|
[tool.black]
|
2022-11-19 15:27:03 +01:00
|
|
|
extend-exclude = "(api/.*/migrations/.*)"
|
|
|
|
|
force-exclude = "(api/.*/migrations/.*)" # pre-commit pass files as args
|
2022-11-19 15:58:57 +01:00
|
|
|
|
|
|
|
|
[tool.isort]
|
|
|
|
|
profile = "black"
|
|
|
|
|
extend_skip_glob = ["api/*/migrations/*"]
|
|
|
|
|
known_first_party = ["funkwhale_api", "config"]
|
2022-11-24 01:32:57 +01:00
|
|
|
|
|
|
|
|
[tool.codespell]
|
|
|
|
|
ignore-words = ".codespellignore"
|
2022-11-27 20:42:58 +00:00
|
|
|
skip = "*.po,*.pot,*.lock,api/funkwhale_api/common/locales.py,front/src/locales/*.json"
|