1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2026-04-22 04:15:31 -04:00
Files
jarv.is/.prettierrc.js
T
2025-02-07 11:33:38 -05:00

15 lines
239 B
JavaScript

/**
* @type {import("prettier").Config}
*/
const config = {
singleQuote: false,
jsxSingleQuote: false,
printWidth: 120,
tabWidth: 2,
useTabs: false,
quoteProps: "as-needed",
trailingComma: "es5",
};
export default config;