You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
655 B

3 months ago
{
"$schema": "https://json.schemastore.org/prettierrc.json",
3 months ago
"printWidth": 120,
"tabWidth": 2,
"useTabs": false,
"semi": true,
3 months ago
"singleQuote": true,
3 months ago
"bracketSpacing": true,
"trailingComma": "all",
"arrowParens": "always",
"endOfLine": "auto",
"htmlWhitespaceSensitivity": "ignore",
"singleAttributePerLine": false,
"jsxSingleQuote": true,
3 months ago
"overrides": [
{
"files": "*.wxml",
"options": {
"parser": "html"
}
3 months ago
},
{
"files": "*.wxss",
"options": {
"parser": "css"
}
3 months ago
},
{
"files": "*.wxs",
"options": {
"parser": "babel"
}
3 months ago
}
]
}