feat: prettier, gitignore config

This commit is contained in:
Barrett Ruth 2025-11-08 13:35:36 -05:00
parent 55691ac956
commit e46cc81c8d
3 changed files with 33 additions and 0 deletions

17
.prettierrc Normal file
View file

@ -0,0 +1,17 @@
{
"proseWrap": "always",
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"trailingComma": "none",
"semi": false,
"singleQuote": true,
"overrides": [
{
"files": ["**/*.md"],
"options": {
"parser": "markdown"
}
}
]
}