fix(pre-commit): remove md from biome check file pattern

Biome 2.x does not support Markdown checking, causing errors on
CLAUDE.md. Remove md from the hook's file filter. Also includes
minor autofix changes from biome (trailing newlines).
This commit is contained in:
2026-03-18 19:38:16 +02:00
parent 5f40abc58c
commit 5f2502e33b
5 changed files with 4 additions and 4 deletions

View File

@@ -27,7 +27,7 @@ repos:
name: Biome Check name: Biome Check
entry: yarn biome check --write --files-ignore-unknown=true --no-errors-on-unmatched entry: yarn biome check --write --files-ignore-unknown=true --no-errors-on-unmatched
language: system language: system
files: \.(js|ts|jsx|tsx|json|md)$ files: \.(js|ts|jsx|tsx|json)$
- id: markdown-table-formatter - id: markdown-table-formatter
name: Markdown Table Formatter name: Markdown Table Formatter
entry: yarn markdown-table-formatter entry: yarn markdown-table-formatter

2
config/exports Normal file → Executable file
View File

@@ -511,4 +511,4 @@ if [ -f "$XDG_CONFIG_HOME/exports-local" ]; then source "$XDG_CONFIG_HOME/export
# shellcheck source=./exports-lakka # shellcheck source=./exports-lakka
if [ -f "$XDG_CONFIG_HOME/exports-$(hostname)" ]; then source "$XDG_CONFIG_HOME/exports-$(hostname)"; fi if [ -f "$XDG_CONFIG_HOME/exports-$(hostname)" ]; then source "$XDG_CONFIG_HOME/exports-$(hostname)"; fi
# shellcheck source=./exports-lakka-secret # shellcheck source=./exports-lakka-secret
if [ -f "$XDG_CONFIG_HOME/exports-$(hostname)-secret" ]; then source "$XDG_CONFIG_HOME/exports-$(hostname)-secret"; fi if [ -f "$XDG_CONFIG_HOME/exports-$(hostname)-secret" ]; then source "$XDG_CONFIG_HOME/exports-$(hostname)-secret"; fi

View File

@@ -65,4 +65,4 @@
"virtual_hid_keyboard": { "keyboard_type_v2": "iso" } "virtual_hid_keyboard": { "keyboard_type_v2": "iso" }
} }
] ]
} }

0
local/bin/dfm Normal file → Executable file
View File

2
scripts/cleanup-old-version-managers.sh Normal file → Executable file
View File

@@ -135,4 +135,4 @@ if command -v brew &> /dev/null; then
done done
fi fi
msgr yay "Cleanup complete! Run 'mise install' to set up tools via mise." msgr yay "Cleanup complete! Run 'mise install' to set up tools via mise."