From c276eba15104f1562c2f88d143fa8cc3b2bf75b6 Mon Sep 17 00:00:00 2001 From: Ember <197652334@qq.com> Date: Wed, 5 Nov 2025 11:05:45 +0800 Subject: [PATCH] test: verify pre-commit hook formatting --- web/src/test-hook.ts | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 web/src/test-hook.ts diff --git a/web/src/test-hook.ts b/web/src/test-hook.ts new file mode 100644 index 00000000..6f0a0013 --- /dev/null +++ b/web/src/test-hook.ts @@ -0,0 +1,7 @@ +// This is a test file to verify pre-commit hook +const testFunction = () => { + console.log('This should be formatted'); + return 'test'; +}; + +export default testFunction;