Skip to content

Commit

Permalink
Chore: Type prettier config
Browse files Browse the repository at this point in the history
  • Loading branch information
SBoudrias committed Apr 24, 2024
1 parent 3550026 commit 6a18ae8
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 13 deletions.
13 changes: 0 additions & 13 deletions .prettierrc

This file was deleted.

16 changes: 16 additions & 0 deletions .prettierrc.mjs
@@ -0,0 +1,16 @@
/** @type {import("prettier").Config} */
const config = {
endOfLine: 'auto',
singleQuote: true,
printWidth: 90,
overrides: [
{
files: ['tsconfig.json'],
options: {
trailingComma: 'none',
},
},
],
};

export default config;

0 comments on commit 6a18ae8

Please sign in to comment.