VTable/.prettierrc.js

16 lines
388 B
JavaScript
Raw Normal View History

2023-06-05 10:48:40 +00:00
// 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"
2023-06-05 10:48:40 +00:00
};