Skip to content

Commit

Permalink
feat: add prettier.config.js and format files
Browse files Browse the repository at this point in the history
  • Loading branch information
frankpagan committed Nov 4, 2024
1 parent 9802a6c commit 090db4f
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions prettier.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
module.exports = {
tabWidth: 4,
semi: true,
trailingComma: "none",
bracketSameLine: true,
useTabs: true,
overrides: [
{
files: ["*.json", "*.yml", "*.yaml"],
options: {
tabWidth: 2,
},
}
],
};

0 comments on commit 090db4f

Please sign in to comment.