1
0
mirror of https://github.com/renbaoshuo/202401-programming-assignments.git synced 2024-10-18 08:13:38 +00:00
202401-programming-assignments/.prettierrc

37 lines
512 B
Plaintext
Raw Normal View History

2024-10-11 05:50:37 +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
}
}
]
}