0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 22:25:27 +00:00
OI-codes/.prettierrc

37 lines
512 B
Plaintext
Raw Normal View History

2022-04-01 09:16:52 +00:00
{
2022-06-01 01:45:41 +00:00
"tabWidth": 4,
"singleQuote": true,
"overrides": [
{
"files": "*.md",
"options": {
"tabWidth": 2
}
},
{
"files": "*.y{,a}ml",
"options": {
"tabWidth": 2
}
},
{
"files": "*.json",
"options": {
"tabWidth": 2
}
},
{
"files": ".prettierrc",
"options": {
"tabWidth": 2
}
},
{
"files": ".clang-format",
"options": {
"tabWidth": 2
}
}
]
2022-04-01 09:16:52 +00:00
}