-
Notifications
You must be signed in to change notification settings - Fork 188
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add prettier #57
Add prettier #57
Conversation
Prettier has been added as a dev dependency along with a few other tools that run prettier on staged files before committing them. This prevents any file from being committed that hasn't gone through the project's formatting. Check the prettier.config.js file for details on how we format files.
Changes made 👍 |
@jakewies can you revert the md/js files and reapply the updated prettyconfig on all of them? Other than that great work! |
Ya just realized there are a few MD files at the root that I hadn’t reverted. I’ll clean this up. |
@kentnek applied the changes to the md/js files. Let me know if I missed something. If it looks good you can merge 😄 |
oh sorry I've been occupied with work recently. the PR looks good to me now! |
Addresses #54.
This PR adds formatting to the project using
prettier
. I have runprettier
on the entire project to get the initial formatting in place. From this point forward, any file being committed must first pass through prettier for formatting.prettier.config.js
file for formatting rules.prettierignore
file to see what's not being formatted