diff options
author | marv <rotrobmin@gmail.com> | 2024-02-02 20:44:14 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-03 04:44:14 +0000 |
commit | 97c5c741137ecc363630c58797901f1eb829c1bb (patch) | |
tree | 050bd42fc633d728d1687d51db93714efabbfe81 /.prettierignore | |
parent | e598a97f27747bef0f850dcce2ad7bdeab89e0cd (diff) |
Add Prettier Formatting for Markdown Files and Pre-Commit Hook (#543)
* Install prettier, add prettierignore
* Add precommit hook for md
* Prettier format md files
Diffstat (limited to '.prettierignore')
-rw-r--r-- | .prettierignore | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 00000000..a501e2ca --- /dev/null +++ b/.prettierignore @@ -0,0 +1,5 @@ +# Ignore Everything +**/**.* + +# Except for markdown +!**/*.md
\ No newline at end of file |