diff --git a/.prettierrc.js b/.prettierrc.js new file mode 100644 index 0000000..cb47fdd --- /dev/null +++ b/.prettierrc.js @@ -0,0 +1,13 @@ +/** @type {import("prettier").Options} */ +const config = { + arrowParens: "always", + endOfLine: "lf", + jsxSingleQuote: true, + printWidth: 120, + quoteProps: "consistent", + singleQuote: true, + tabWidth: 2, + trailingComma: "all", +}; + +module.exports = config;