chore: update prettier line width limit to 105ch

to prevent over-aggressive line breaks & wraps.
This commit is contained in:
Pujit Mehrotra
2024-09-23 17:12:38 -04:00
parent 0e4054cf3b
commit f88415e3d9

8
api/.prettierrc.cjs Normal file
View File

@@ -0,0 +1,8 @@
// prettier.config.js or .prettierrc.js
module.exports = {
trailingComma: "es5",
tabWidth: 4,
semi: true,
singleQuote: true,
printWidth: 105,
};