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;