mirror of
https://github.com/andatoshiki/toshiki-notebook.git
synced 2026-06-05 21:46:28 +00:00
42 lines
843 B
JSON
42 lines
843 B
JSON
{
|
|
"tabWidth": 4,
|
|
"printWidth": 120,
|
|
"proseWrap": "preserve",
|
|
"semi": false,
|
|
"trailingComma": "es5",
|
|
"singleQuote": true,
|
|
"arrowParens": "avoid",
|
|
"endOfLine": "lf",
|
|
"overrides": [
|
|
{
|
|
"files": "{*.md,.prettierrc,.stylelintrc,.babelrc,.html}",
|
|
"options": {
|
|
"tabWidth": 4
|
|
}
|
|
},
|
|
{
|
|
"files": "{*.js?(on),*.js, *.ts, *.vue, *.css, *.scss}",
|
|
"options": {
|
|
"trailingComma": "none",
|
|
"tabWidth": 2
|
|
}
|
|
},
|
|
{
|
|
"files": "{**/.vscode/*.json,**/tsconfig.json,**/tsconfig.*.json}",
|
|
"options": {
|
|
"parser": "json5",
|
|
"quoteProps": "preserve",
|
|
"singleQuote": false,
|
|
"trailingComma": "all",
|
|
"tabWidth": 2
|
|
}
|
|
},
|
|
{
|
|
"files": "*.y?(a)ml,",
|
|
"options": {
|
|
"singleQuote": true
|
|
}
|
|
}
|
|
]
|
|
}
|