mirror of
https://github.com/certimate-go/certimate.git
synced 2026-06-22 21:05:48 +08:00
21 lines
403 B
JavaScript
21 lines
403 B
JavaScript
/**
|
|
* @type {import("prettier").Config}
|
|
*/
|
|
export default {
|
|
arrowParens: "always",
|
|
bracketSpacing: true,
|
|
editorconfig: true,
|
|
htmlWhitespaceSensitivity: "ignore",
|
|
jsxSingleQuote: false,
|
|
endOfLine: "crlf",
|
|
printWidth: 160,
|
|
proseWrap: "preserve",
|
|
quoteProps: "as-needed",
|
|
semi: true,
|
|
singleQuote: false,
|
|
tabs: false,
|
|
tabWidth: 2,
|
|
trailingComma: "es5",
|
|
useTabs: false,
|
|
};
|