14 lines
260 B
JavaScript
14 lines
260 B
JavaScript
|
/** @type {import("prettier").Config} */
|
||
|
export default {
|
||
|
arrowParens: "always",
|
||
|
bracketSpacing: true,
|
||
|
endOfLine: "lf",
|
||
|
printWidth: 110,
|
||
|
proseWrap: "preserve",
|
||
|
quoteProps: "as-needed",
|
||
|
semi: true,
|
||
|
tabWidth: 4,
|
||
|
trailingComma: "es5",
|
||
|
useTabs: true,
|
||
|
};
|