test/.prettierrc.js

26 lines
537 B
JavaScript
Raw Normal View History

2024-05-07 16:24:43 +00:00
/** @format */
module.exports = {
singleQuote: true,
trailingComma: "all",
printWidth: 100,
proseWrap: "never",
endOfLine: "auto",
semi: true,
tabWidth: 4,
vueIndentScriptAndStyle: true,
htmlWhitespaceSensitivity: "strict",
overrides: [
{
files: ".prettierrc",
options: {
parser: "json",
},
},
{
files: "document.ejs",
options: {
parser: "html",
},
},
],
};