Skip to content

Commit

Permalink
feat(prettier): add prettier.config.mjs
Browse files Browse the repository at this point in the history
  • Loading branch information
ghoshRitesh12 committed Oct 29, 2024
1 parent 23fcd4a commit 9ae824b
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions prettier.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/**
* @type {import("prettier").Config}
*/
export default {
semi: true,
tabWidth: 2,
useTabs: false,
printWidth: 80,
singleQuote: false,
arrowParens: "always",
trailingComma: "es5",
singleAttributePerLine: true,
};

0 comments on commit 9ae824b

Please sign in to comment.