mirror of
https://github.com/usual2970/certimate.git
synced 2025-06-08 21:49:52 +00:00
21 lines
405 B
JavaScript
21 lines
405 B
JavaScript
/**
|
|
* @type {import("prettier").Config}
|
|
*/
|
|
module.exports = {
|
|
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,
|
|
};
|