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

22 lines
365 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",
2020-03-23 23:38:35 +09:00
"proseWrap": "preserve",
"endOfLine": "lf",
2020-03-23 23:31:00 +09:00
"overrides": [
{
"files": "*.ts",
"options": {
"tabWidth": 4,
"parser": "typescript"
}
}
]
}