Installed and Added Prettier Tool to Another Branch #63
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Tool not from Starter List
Note: Installed Prettier Tool to another branch due to conflicts with Lint and Prettier code style in first branch causing Github actions to fail.
Files Added:
prettier-install-log.txt
prettier-check-log.txt
Description:
Successfully installed Prettier and logged that NPM packages were installed by including terminal output in prettier-install-log.txt.
The Prettier tool was added to the package.json file. This can be found on line 163 in the package.json file (which is listed inside the .gitignore file).
Demonstrated that Prettier successfully runs on the repository by running
npx prettier . --check
and getting the following output meaning that the tool checked to see what files need to be changed to the Prettier code style.Was able to log these changes in the output file prettier-check-log.txt by running
npx prettier --list-different .
to identify what files were different from Prettier's expected code style and formatting.