This is base eslint configuration which can be used across projects without need to maintain all rules project wise. We can add project wise rule changes if required any.
npm i eslint-config-vipul-base
Then in ESLint config object i.e .eslintrc
, use extends : "eslint-config-vipul-base"
as given below
{
"root": true,
"extends": "eslint-config-vipul-base",
"rules": {
// Overrides
},
// Rules limited to specific locations
"overrides": []
}
- Vipul Wairagade
See also the list of contributors who participated in this project.
This project is licensed under the MIT License - see the LICENSE file for details.