0.0.7 • Published 6 years ago
eslint-config-sukharev v0.0.7
eslint-config 🌻
Here is my eslint + VScode configs.
Installing
If you don't already have a
package.jsonfile, create one withnpm init.Then we need to install everything needed by the config:
npx install-peerdeps --dev eslint-config-sukharevYou can see in your package.json there are now a big list of devDependencies.
Create a
.eslintrcfile in the root of your project's directory (it should live where package.json does). Your.eslintrcfile should look like this:
{
"extends": ["sukharev"]
}Tip: You can alternatively put this object in your package.json under the property "eslintConfig":. This makes one less file in your project.
- You can add two scripts to your package.json to lint and/or fix:
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},- Now we can manually lint code by running
npm run lintand fix all fixable issues withnpm run lint:fix. You probably want your editor to do this though, but it can be useful to lint and fix all files at one time.