feat(pkg): Add shared Prettier config

This commit is contained in:
T. R. Bernstein
2025-02-24 23:09:10 +01:00
parent be84ac379d
commit 85230a1b7c
3 changed files with 20 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
// Documentation for this file: https://prettier.io/en/configuration.html
const config = {
printWidth: 110,
semi: false,
endOfLine: 'auto',
singleQuote: true,
trailingComma: 'none'
}
export default config