From 657ef215b0340519fb63febfc6c5d922c8d1e4a9 Mon Sep 17 00:00:00 2001 From: RobertGemmaJr Date: Mon, 27 Nov 2023 09:30:01 -0500 Subject: [PATCH] docs: Update format bullet point --- docs/project_organization/npm_scripts.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/project_organization/npm_scripts.mdx b/docs/project_organization/npm_scripts.mdx index cba30fc9..1335f9f2 100644 --- a/docs/project_organization/npm_scripts.mdx +++ b/docs/project_organization/npm_scripts.mdx @@ -79,6 +79,6 @@ Packaging for windows on a non-windows machine requires `mono` and `wine` to be ## Miscellaneous - `commit` runs [commitizen](https://commitizen-tools.github.io/commitizen/) in the console. It is useful for ensuring your Git commit messages are easy to follow. -- `lint` uses [Eslint](https://eslint.org/) to find problems in the code -- `format` uses [Eslint](https://eslint.org/) to find and fix problems in the code that it can automatically +- `lint` uses [Eslint](https://eslint.org/) to find problems in the code. +- `format` uses [Prettier](https://prettier.io) to style code in a consistent format. - `test` launches the test runner in the interactive watch mode. See [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.