mirror of
https://github.com/zkitter/configs.git
synced 2026-01-08 21:17:59 -05:00
* chore: Update to zkitter style * Update postinstall scripts * Update package.json * Update package.json
41 lines
639 B
JSON
41 lines
639 B
JSON
{
|
|
"arrowParens": "avoid",
|
|
"jsxSingleQuote": true,
|
|
"parser": "typescript",
|
|
"printWidth": 100,
|
|
"semi": true,
|
|
"singleQuote": true,
|
|
"tabWidth": 2,
|
|
"trailingComma": "es5",
|
|
"overrides": [
|
|
{
|
|
"files": "*.ts",
|
|
"options": {
|
|
"parser": "typescript"
|
|
}
|
|
},
|
|
{
|
|
"files": [
|
|
"*.yml",
|
|
"*.yaml"
|
|
],
|
|
"options": {
|
|
"parser": "yaml"
|
|
}
|
|
},
|
|
{
|
|
"files": "*.json",
|
|
"options": {
|
|
"parser": "json",
|
|
"trailingComma": "none"
|
|
}
|
|
},
|
|
{
|
|
"files": "*.md",
|
|
"options": {
|
|
"parser": "markdown"
|
|
}
|
|
}
|
|
]
|
|
}
|