Improve your code with this custom eslint patterns
- 📝 Eslint
- 📝 Prettier
- 📝 React | React Hooks
- 📝 NodeJS
// Install the dependency in your project
$ npm i @as-code/eslint-config --save-dev
// Create an eslint file
$ .eslintrc.json
And paste the following code into the file:
{
// For react project
"extends": "@as-code/eslint-config/react"
}
Or
{
// If you are creating a node application
"extends": "@as-code/eslint-config/node"
}