mirror of
https://github.com/vitejs/vite.git
synced 2024-11-21 14:48:41 +00:00
23 lines
353 B
JSON
23 lines
353 B
JSON
{
|
|
"semi": false,
|
|
"tabWidth": 2,
|
|
"singleQuote": true,
|
|
"printWidth": 80,
|
|
"trailingComma": "all",
|
|
"overrides": [
|
|
{
|
|
"files": ["*.json5"],
|
|
"options": {
|
|
"singleQuote": false,
|
|
"quoteProps": "preserve"
|
|
}
|
|
},
|
|
{
|
|
"files": ["*.yml"],
|
|
"options": {
|
|
"singleQuote": false
|
|
}
|
|
}
|
|
]
|
|
}
|