From c62c5480ca2a5dcc760e988e3649694f8f4b5305 Mon Sep 17 00:00:00 2001 From: frankpagan Date: Mon, 4 Nov 2024 01:10:00 -0500 Subject: [PATCH] feat: add prettier.config.js and format files --- prettier.config.js | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 prettier.config.js diff --git a/prettier.config.js b/prettier.config.js new file mode 100644 index 0000000..c651441 --- /dev/null +++ b/prettier.config.js @@ -0,0 +1,15 @@ +module.exports = { + tabWidth: 4, + semi: true, + trailingComma: "none", + bracketSameLine: true, + useTabs: true, + overrides: [ + { + files: ["*.json", "*.yml", "*.yaml"], + options: { + tabWidth: 2, + }, + } + ], + };