Files
configs/packages/prettier/.prettierrc.json
r1oga 507e65c44a chore: Update to zkitter style (#1)
* chore: Update to zkitter style

* Update postinstall scripts

* Update package.json

* Update package.json
2022-12-20 13:18:05 +01:00

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"
}
}
]
}