Migrate to .prettierrc.js, and add dist to .prettierignore

This commit is contained in:
wearrrrr 2024-07-14 20:27:25 -05:00
parent ddaea9b86a
commit a630d54c83
2 changed files with 13 additions and 1 deletions

View file

@ -1,4 +1,5 @@
pnpm-lock.yaml
README.md
tsconfig.json
tests/
tests/
dist/

11
.prettierrc.js Normal file
View file

@ -0,0 +1,11 @@
/**
* @type {import("prettier").Config}
*/
const config = {
trailingComma: "es6",
useTabs: true,
semi: true,
singleQuote: false,
};
export default config;