Skip to content

Commit

Permalink
docs: remove mention about ESLint stylistic rules in readme (#17810)
Browse files Browse the repository at this point in the history
readme: remove mention about ESLint stylistic rules

In the section "Does Prettier replace ESLint", it was mentioned that ESLint has stylistic rules, however these rules have been [deprecated recently](https://eslint.org/blog/2023/10/deprecating-formatting-rules/).
  • Loading branch information
Zwyx committed Dec 7, 2023
1 parent fd0c60c commit fd28363
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -103,7 +103,7 @@ We are now at or near 100% compatibility with JSCS. If you try ESLint and believ

### Does Prettier replace ESLint?

No, ESLint does both traditional linting (looking for problematic patterns) and style checking (enforcement of conventions). You can use ESLint for everything, or you can combine both using Prettier to format your code and ESLint to catch possible errors.
No, ESLint and Prettier have diffent jobs: ESLint is a linter (looking for problematic patterns) and Prettier is a code formatter. Using both tools is common, refer to [Prettier's documentation](https://prettier.io/docs/en/install#eslint-and-other-linters) to learn how to configure them to work well with each other.

### Why can't ESLint find my plugins?

Expand Down

0 comments on commit fd28363

Please sign in to comment.