Skip to content

Commit

Permalink
formatter config
Browse files Browse the repository at this point in the history
  • Loading branch information
versecafe authored and ADKaster committed Jul 6, 2024
1 parent 47ef9cb commit 5d3e5d0
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions prettier.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
const config = {
arrowParens: "avoid",
bracketSpacing: true,
endOfLine: "lf",
insertPragma: false,
printWidth: 100,
quoteProps: "as-needed",
semi: true,
singleQuote: false,
tabWidth: 2,
trailingComma: "es5",
useTabs: false,
};

export default config;

0 comments on commit 5d3e5d0

Please sign in to comment.