mirror of
https://gitee.com/270580156/weiyu.git
synced 2026-05-16 12:18:10 +00:00
22 lines
330 B
JavaScript
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",
|
|
},
|
|
},
|
|
],
|
|
};
|