create-hest-app
Version:
Create HestJS-powered applications with one command
34 lines (33 loc) • 578 B
Plain Text
{
"semi": true,
"singleQuote": true,
"trailingComma": "all",
"quoteProps": "as-needed",
"tabWidth": 2,
"printWidth": 80,
"bracketSpacing": true,
"arrowParens": "avoid",
"endOfLine": "lf",
"useTabs": false,
"overrides": [
{
"files": "*.json",
"options": {
"singleQuote": false
}
},
{
"files": "*.md",
"options": {
"proseWrap": "preserve"
}
},
{
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
"options": {
"singleQuote": true,
"semi": true
}
}
]
}