gctGenerator/.prettierrc

28 lines
402 B
Text
Raw Normal View History

2020-06-29 00:35:18 +09:00
{
"printWidth": 100,
"singleQuote": true,
"useTabs": false,
"tabWidth": 2,
2020-07-04 02:23:15 +09:00
"trailingComma": "all",
"overrides": [
{
"files": "*.js",
"options": {
"parser": "babel"
}
},
{
"files": "*.md",
"options": {
"parser": "markdown"
}
},
{
"files": "*.json",
"options": {
"parser": "json"
}
}
]
2020-06-29 00:35:18 +09:00
}