December 2019
Intermediate to advanced
598 pages
12h 21m
English
We are going to add Prettier to our project by following these steps in Visual Studio Code:
> npm install prettier --save-dev
> npm install eslint-config-prettier eslint-plugin-prettier --save-dev
eslint-config-prettier disables ESLint rules that conflict with Prettier. Here, eslint-plugin-prettier is an ESLint rule that formats code using Prettier.
{ "extends": ...Read now
Unlock full access