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