eslint-config-unistore
v1.0.2
Published
shared eslint for all repos in unistore
Downloads
6
Readme
Getting started
This project includes eslint features used across unistore.
Steps to include eslint to your project
- We need to add this package as a dev dependency using :
yarn add --dev eslint-config-unistore
- go to file .eslintrc.js . Update as
module.exports = {
'extends': [
'react-app',
'react-app/jest',
'eslint-config-unistore',
],
};