mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 04:45:22 -04:00
13 lines
235 B
JavaScript
13 lines
235 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;
|