Linting and Formatting
Last updated
Was this helpful?
Last updated
Was this helpful?
Setting up linters and code formatters is really important to group projects. When people are doing things like using different kinds of quotes, or people are following different semicolon rules, code can become a confusing mess real quick. Adding things like code formatters and linters can be really beneficial to building a uniform and readable code base. This guide aims to help you easily set these things up in your groups project.
ESLint
Prettier
Make sure every team member has prettier and eslint VS Code extension's installed.
By default, most Labs projects will have both already in the DevDependancies
with a Labs config in place. In these cases you can simply run npm run lint
to view any errors or warnings and npm run lint:fix
will attempt to fix them
Now we need to add dependencies to our project with some rc files! Woo hoo! π
In the root of your project's directory run:
npm i eslint prettier eslint-config-prettier eslint-plugin-prettier
By adding .prettierrc.js
to our root with the following content for both React and Node projects, then the whole team will have shared formatter rules.
Then we can add some scripts to our package.json
.
Setting up ESLint and Prettier in your projects can go a long way in helping you write better, more readable code. Even more so when you're working in a team environment.
You may have noticed that the "rules" key's where empty in the .eslintrc examples. ESLint does a lot by default but if you want more in-depth, fine grain control over the coding style for your project visit their docs on rules here!