Files
weiyu/visitor/react/.prettierrc.js
jack ning 8a84e6b738 update
2024-04-05 15:53:09 +08:00

22 lines
330 B
JavaScript

module.exports = {
singleQuote: true,
trailingComma: "all",
printWidth: 100,
proseWrap: "never",
endOfLine: "lf",
overrides: [
{
files: ".prettierrc",
options: {
parser: "json",
},
},
{
files: "document.ejs",
options: {
parser: "html",
},
},
],
};