eslint-config-jsb
v1.0.9
Published
An eslint config for React and typescript
Downloads
4
Maintainers
Readme
Voila! Eslint, Prettier, and Typescript Setup for React
My settings for ESLint, Prettier, and Typescript in a React project. Works with Next.js as well!
I've also included Cypress in this config for any Cypress users. Don't worry, you don't have to use it.
Need, to change things? You can easily do that as well.
Pro-Tip: Check out my eslint-config-jsb-node for Node and Typescript projects.
How it works
- It lints all of your
js
andts
code in any project subdirectories - It uses eslint-config-airbnb-typescript for it's underyling lint rules
- It fixes issues and formatting errors with Prettier
- It provides all the necessary packages, like
typescript
and@types/react
, to run typescript in React
Local setup
To set this up in your project:
- Ensure you are in the root project directory of a React project. Then install all necessary dependencies:
npx install-peerdeps -D eslint-config-jsb
You should now notice that your
package.json
is popuplated with several new dependencies.Now, create an
.eslintrc.json
file in your root project directory, and provide the following json:
{
"extends": ["eslint-config-jsb"]
}
This will actually allow your project to leverage this config.
- Next, add some scripts to your
package.json
so you can run eslint:
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint '**/*.{ts,js}' --quiet --fix"
}
If you run
npm run lint
from your terminal, it will expose any issues. If you runnpm run lint:fix
it will quietly fix all of your javascript and typescript files in any project subdirectories.Now, you need to create a
tsconfig.json
file in your root project directory. This is where your typescript configuration will live. It's also how eslint will be able to work with typescript. I recommend the following Next.jstsconfig.json
as a start, but feel free to customize where needed:
{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": false,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"types": ["cypress"]
},
"include": ["next-env.d.ts", "**/*", "**/*.tsx", "cypress"],
"exclude": ["node_modules", ".next"]
}
If you're not using Next.js, then simply remove next-env.d.ts
and .next
from this config. If you're not using Cypress, then remove all its references in this file as well.
- Typescript will now expect
ts
files to exist in one of your subdirectories. Go ahead and create a sample file insrc
calledsample.ts
:
const getFood: () => string = () => {
return 'yummy tacos!';
};
getFood();
Working with VS Code
VS Code can be tricky with linting, especially if you have global formatting tools installed like Prettier. Let's fix that.
Install the ESLint plugin in VS Code.
Now, let's update some of the settings for ESLint in VS Code's
settings.json
file. Pull up the command palette, which iscmd shift p
on mac. Then typesettings json
and click onOpen Settings (JSON)
. In this file, provide the following settings:
"editor.formatOnSave": true,
// turn auto-save off for javascript, react, typescript and typescript react
// these will be done through eslint
"[javascript]": {
"editor.formatOnSave": false
},
"[javascriptreact]": {
"editor.formatOnSave": false
},
"[typescript]": {
"editor.formatOnSave": false
},
"[typescriptreact]": {
"editor.formatOnSave": false
},
// eslint to run on save
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"prettier.disableLanguages": ["js", "tsx"],
Now you are all set up to auto-fix all linting errors on save in VS Code.
Finally, you'll need to restart VS Code for all of the changes to take place and work effectively.
Pro-Tip: You can either quit VS Code and reopen it, or pull up the command palette and type "reload" then select "Developer: Reload Window."
Customize the settings
Want to customize the ESLint and Prettier settings even further? You can add the rules in your .eslintrc.json
file. ESLint Rules go under the "rules"
option. Prettier options should be nested in "prettier/prettier"
. Any prettier rules will overwrite the existing ones in my config, so if you want to keep the existing ones, be sure to include them. Here's an example of what you could do:
{
"extends": ["eslint-config-jsb-node"],
"rules": {
"no-console": "off",
"prettier/prettier": [
"error",
{
"arrowParens": "avoid",
"trailingComma": "es5",
"singleQuote": true,
"printWidth": 80
}
]
}
}
This would turn all console lint errors off (so you can use console.log
). It would also add a prettier rule for omitting parens in arrow functions when possible.
Where to go from here
From here, I'd recommend converting your files from .js
to .tsx
and adding Typescript in your React project!
Using Cypress
Are you a Cypress user? You can set that up with ease:
- Add the following script in your
package.json
to yourscripts
"test": "cypress open",
- Run
npm run test
. This should set all of your Cypress files up.