Files
HKSingleParty/03_source/mobile/.prettierrc

42 lines
689 B
Plaintext

{
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"trailingComma": "es5",
"printWidth": 100,
"plugins": [
"prettier-plugin-sort-json"
],
"jsonRecursiveSort": false,
"jsonSortOrder": "{\"*\": \"lexical\"}",
"overrides": [
{
"files": "src/pages/MainTabs/index.tsx",
"options": {
"printWidth": 240
}
},
{
"files": "src/App.tsx",
"options": {
"printWidth": 160
}
},
{
"files": "src/routes/*",
"options": {
"printWidth": 160
}
},
{
"files": [
"*.html",
"legacy/**/*.js"
],
"options": {
"tabWidth": 4
}
}
]
}