@@ -284,7 +284,7 @@ strict-imports = false
284284
285285[tool .codespell ]
286286ignore-words-list = " alog,selectin,selectinload"
287- skip = ' uv.lock, package-lock.json'
287+ skip = ' uv.lock, package-lock.json, src/ui/lib/api/zod.gen.ts '
288288
289289[tool .mypy ]
290290disallow_any_generics = false
@@ -339,66 +339,3 @@ module = ["app.db.migrations.*", "app.lib.dto.*"]
339339[tool .pyright ]
340340exclude = [" scripts" , " docs" ]
341341include = [" src/app" , " tests" ]
342-
343- [tool .git-cliff .changelog ]
344- body = """
345- {% if version %}\
346- `Release [v{{ version | trim_start_matches(pat="v") }}] - {{ timestamp | date(format="%Y-%m-%d") }} <https://github.com/litestar-org/litestar-fullstack/releases/tag/v{{ version | trim_start_matches(pat="v") }}>`_
347- ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
348- * `See All commits in v{{ version | trim_start_matches(pat="v") }} <https://github.com/litestar-org/litestar-fullstack/commits/v{{ version | trim_start_matches(pat="v") }}>`_
349- {% else %}\
350- [unreleased]
351- ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
352- {% endif %}\
353- {% if previous %}\
354- {% if previous.commit_id %}
355- `{{ previous.commit_id | truncate(length=7, end="") }} <https://github.com/litestar-org/litestar-fullstack/commit/{{ previous.commit_id }}>`_ ... \
356- `{{ previous.commit_id | truncate(length=7, end="") }} <https://github.com/litestar-org/litestar-fullstack/commit/{{ commit_id }}>`_ \
357- | `See diff for {{ version }} <https://github.com/litestar-org/litestar-fullstack/compare/{{ previous.commit_id }}...{{ commit_id }}>`_
358- {% endif %}\
359- {% endif %}\
360- {% for group, commits in commits | group_by(attribute="group") %}
361- {{ group | upper_first }}
362- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
363- {% for commit in commits %}
364- * (`{{ commit.id | truncate(length=7, end="") }} <https://github.com/litestar-org/litestar-fullstack/commit/{{ commit.id }}>`_) {% if commit.breaking %}[**breaking**] {% endif %} - {{ commit.message | upper_first }} ({{ commit.author.name }})\
365- {% for footer in commit.footers -%}
366- , {{ footer.token }}{{ footer.separator }}{{ footer.value }}\
367- {% endfor %}\
368- {% endfor %}
369- {% endfor %}\n
370- """
371- footer = """
372- Litestar Fullstack Changelog
373- """
374- header = """
375- =========
376- Changelog
377- =========\n
378- All commits to this project will be documented in this file.\n
379- """
380- trim = true
381-
382- [tool .git-cliff .git ]
383- commit_parsers = [
384- { message = " ^feat" , group = " Features" },
385- { message = " ^fix" , group = " Bug Fixes" },
386- { message = " ^doc" , group = " Documentation" },
387- { message = " ^perf" , group = " Performance" },
388- { message = " ^refactor" , group = " Refactor" },
389- { message = " ^style" , group = " Styling" },
390- { message = " ^test" , group = " Testing" },
391- { message = " ^chore\\ (release\\ ): prepare for" , skip = true },
392- { message = " ^chore" , group = " Miscellaneous Tasks" },
393- { body = " .*security" , group = " Security" },
394- ]
395- conventional_commits = true
396- filter_commits = false
397- filter_unconventional = true
398- ignore_tags = " "
399- protect_breaking_commits = false
400- skip_tags = " v0.1.0-beta.1"
401- sort_commits = " oldest"
402- split_commits = false
403- tag_pattern = " v[0-9]*"
404- topo_order = false
0 commit comments