VTable/.prettierrc.js
2024-03-13 17:20:06 +08:00

16 lines
388 B
JavaScript

// Documentation for this file: https://prettier.io/en/configuration.html
module.exports = {
"printWidth": 120,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"quoteProps": "as-needed",
"trailingComma": "none",
"bracketSpacing": true,
"arrowParens": "avoid",
"proseWrap": "preserve",
"htmlWhitespaceSensitivity": "css",
"endOfLine": "auto"
};