eslint-plugin-vanilla-extract/.prettierrc

18 lines
277 B
Text
Raw Permalink Normal View History

{
"proseWrap": "always",
"printWidth": 120,
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"trailingComma": "all",
"bracketSameLine": true,
"overrides": [
{
"files": "*.jsonc",
"options": {
"trailingComma": "none"
}
}
]
}