nonebot2/.prettierrc

22 lines
355 B
Plaintext
Raw Normal View History

2021-04-05 08:35:29 +00:00
{
"tabWidth": 2,
"useTabs": false,
"endOfLine": "lf",
"arrowParens": "always",
"singleQuote": false,
"trailingComma": "es5",
"semi": true,
"overrides": [
{
"files": [
"**/devcontainer.json",
"**/tsconfig.json",
"**/tsconfig.*.json"
],
"options": {
"parser": "json"
}
}
]
2021-04-05 08:35:29 +00:00
}