From 0d76980fd406fca133c00c05a95cf39a26d650c5 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, + }, + } + ], + };