erp-web/.prettierrc.js

21 lines
406 B
JavaScript
Raw Permalink Normal View History

2024-08-28 14:28:57 +08:00
module.exports = {
printWidth: 100,
semi: true,
vueIndentScriptAndStyle: true,
singleQuote: true,
trailingComma: 'all',
proseWrap: 'never',
// Ignore space sensitivity in HTML tags
htmlWhitespaceSensitivity: 'ignore',
endOfLine: 'auto',
plugins: ['prettier-plugin-packagejson'],
overrides: [
{
files: '.*rc',
options: {
parser: 'json',
},
},
],
};