Hangar/frontend/.prettierrc

17 lines
281 B
Plaintext
Raw Normal View History

2021-01-21 11:36:18 +08:00
{
"tabWidth": 4,
"semi": true,
"singleQuote": true,
2021-02-05 14:51:51 +08:00
"printWidth": 160,
2021-09-22 15:42:21 +08:00
"arrowParens": "always",
"overrides": [
{
"files": "locales/*.ts",
"options": {
"tabWidth": 2,
"trailingComma": "none",
"printWidth": 9999
}
}
]
2021-01-21 11:36:18 +08:00
}