add prettier to project root

This commit is contained in:
Shahrad Elahi
2024-04-20 23:21:41 +03:30
parent 100eeb84ad
commit 4bbcbf140f
4 changed files with 210 additions and 6 deletions

17
.prettierrc Normal file
View File

@@ -0,0 +1,17 @@
{
"useTabs": false,
"semi": true,
"singleQuote": true,
"jsxSingleQuote": true,
"trailingComma": "all",
"printWidth": 100,
"overrides": [
{
"files": "*.md",
"options": {
"parser": "markdown",
"printWidth": 79
}
}
]
}