welfare-admin/.prettierrc

25 lines
457 B
Plaintext
Raw Normal View History

2021-08-11 15:44:50 +08:00
{
"printWidth": 120,
2022-01-07 14:43:46 +08:00
"tabWidth": 2,
"singleQuote": true,
"trailingComma": "none",
2021-08-11 15:44:50 +08:00
"semi": false,
2022-01-07 14:43:46 +08:00
"wrap_line_length": 220,
"wrap_attributes": "false",
"proseWrap": "auto",
"arrowParens": "avoid",
"bracketSpacing": true,
"jsxBracketSameLine": true,
"useTabs": false,
"eslintIntegration":true,
"overrides": [
{
"files": ".prettierrc",
"options": {
"parser": "json"
}
}
],
"endOfLine": "auto"
2021-08-11 15:44:50 +08:00
}