Skip to content

Commit

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

0 comments on commit 1b46792

Please sign in to comment.