From 5da7c5c1c1890f33b07e36d8aa99fe396703cb57 Mon Sep 17 00:00:00 2001 From: n3wborn Date: Tue, 16 Jun 2026 06:52:58 +0200 Subject: [PATCH 1/3] chore(style): add .gitlint Add our own config file for gitlint --- .gitlint | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .gitlint diff --git a/.gitlint b/.gitlint new file mode 100644 index 00000000..8e6f2c98 --- /dev/null +++ b/.gitlint @@ -0,0 +1,13 @@ +[general] +# Ignore rules, reference them by id or name (comma-separated) +ignore=T3 + +# Enable specific community contributed rules +contrib=contrib-title-conventional-commits,CC1 + +### Configuring rules ### +[title-max-length] +line-length=80 + +[title-min-length] +min-length=5 From 7ba1ff0290a77662fc114466e802689c4367b8d2 Mon Sep 17 00:00:00 2001 From: n3wborn Date: Tue, 16 Jun 2026 21:57:01 +0200 Subject: [PATCH 2/3] feat(lsp): update taplo config Set specific config and document --- after/lsp/taplo.lua | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 after/lsp/taplo.lua diff --git a/after/lsp/taplo.lua b/after/lsp/taplo.lua new file mode 100644 index 00000000..ffb74bc6 --- /dev/null +++ b/after/lsp/taplo.lua @@ -0,0 +1,19 @@ +return { + -- kind of schema notation needed for taplo: `"$schema" = 'https://starship.rs/config-schema.json'` + cmd = { 'taplo', 'lsp', 'stdio' }, + filetypes = { 'toml' }, + settings = { + -- Use the defaults that the VSCode extension uses: https://github.com/tamasfe/taplo/blob/2e01e8cca235aae3d3f6d4415c06fd52e1523934/editors/vscode/package.json + taplo = { + configFile = { enabled = true }, + schema = { + enabled = true, + catalogs = { 'https://www.schemastore.org/api/json/catalog.json' }, + cache = { + memoryExpiration = 60, + diskExpiration = 600, + }, + }, + }, + }, +} From 026148011044a31fff001a9630612d9471142f2d Mon Sep 17 00:00:00 2001 From: n3wborn Date: Tue, 16 Jun 2026 21:58:41 +0200 Subject: [PATCH 3/3] Revert "feat(lsp): update taplo config" This reverts commit 7ba1ff0290a77662fc114466e802689c4367b8d2. --- after/lsp/taplo.lua | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 after/lsp/taplo.lua diff --git a/after/lsp/taplo.lua b/after/lsp/taplo.lua deleted file mode 100644 index ffb74bc6..00000000 --- a/after/lsp/taplo.lua +++ /dev/null @@ -1,19 +0,0 @@ -return { - -- kind of schema notation needed for taplo: `"$schema" = 'https://starship.rs/config-schema.json'` - cmd = { 'taplo', 'lsp', 'stdio' }, - filetypes = { 'toml' }, - settings = { - -- Use the defaults that the VSCode extension uses: https://github.com/tamasfe/taplo/blob/2e01e8cca235aae3d3f6d4415c06fd52e1523934/editors/vscode/package.json - taplo = { - configFile = { enabled = true }, - schema = { - enabled = true, - catalogs = { 'https://www.schemastore.org/api/json/catalog.json' }, - cache = { - memoryExpiration = 60, - diskExpiration = 600, - }, - }, - }, - }, -}