Skip to content

Commit

Permalink
feat(Prettier): Configure Markdown files
Browse files Browse the repository at this point in the history
  • Loading branch information
gnarea committed Mar 14, 2024
1 parent 0ddbeec commit f0a360d
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .prettierrc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
{
"endOfLine": "lf",
"singleQuote": true,
"trailingComma": "all"
"trailingComma": "all",
"overrides": [
{
"files": ["*.md", "*.mdx"],
"options": {
"printWidth": 100,
"proseWrap": "always"
}
}
]
}

0 comments on commit f0a360d

Please sign in to comment.