mirror of
https://github.com/VisActor/VTable
synced 2024-11-21 17:40:10 +00:00
16 lines
388 B
JavaScript
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"
|
|
};
|