add prettier config

This commit is contained in:
bakedpotatolord 2025-05-31 20:03:56 -06:00
commit f2d6120a5f

19
prettier.config.js Normal file
View file

@ -0,0 +1,19 @@
/**
* @see https://prettier.io/docs/configuration
* @type {import("prettier").Config}
*/
const config = {
trailingComma: "es5",
useTabs: false,
bracketSpacing: true,
objectWrap: "preserve",
tabWidth: 4,
semi: false,
singleQuote: true,
bracketSameLine: true,
arrowParens: "always",
endOfLine: "crlf"
}
module.exports = config