Files
coder/.prettierrc
T
Bryan 2769f4c2e0 chore: Formatting - bring .prettierrc over from cdr/m (#9)
This brings over the same `.prettierrc` we used in `cdr/m`, and runs the formatter w/ the new settings
2022-01-06 13:02:05 -08:00

14 lines
240 B
Plaintext

{
"printWidth": 120,
"semi": false,
"trailingComma": "all",
"overrides": [
{
"files": ["./README.md", "**/*.yaml", "**/*.yml"],
"options": {
"printWidth": 80,
"proseWrap": "always"
}
}
]
}