1
0
Fork 0
mirror of https://code.forgejo.org/actions/cache.git synced 2025-04-20 19:56:18 +02:00
cache/.prettierrc.json

20 lines
317 B
JSON
Raw Normal View History

2019-10-30 14:48:49 -04:00
{
2020-03-23 23:31:00 +09:00
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": false,
"trailingComma": "es5",
"bracketSpacing": true,
"arrowParens": "always",
"overrides": [
{
"files": "*.ts",
"options": {
"tabWidth": 4,
"parser": "typescript"
}
}
]
}