From f98247c1425d6580f2248c7cc00bc531f0a2b67a Mon Sep 17 00:00:00 2001 From: Julien Froidefond Date: Thu, 9 Oct 2025 11:46:25 +0200 Subject: [PATCH] Test prettier formatting --- test-prettier.js | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 test-prettier.js diff --git a/test-prettier.js b/test-prettier.js new file mode 100644 index 0000000..c2c590d --- /dev/null +++ b/test-prettier.js @@ -0,0 +1,10 @@ +const test = { a: 1, b: 2, c: 3 }; + +function badFormatting() { + console.log('This is poorly formatted'); + return { + result: 'test', + }; +} + +export default badFormatting;