gaearon / react-hot-boilerplate

Minimal live-editing example for React
MIT License
3.91k stars 879 forks source link

update readme with dependencies for lint script #41

Closed pcanterini closed 8 years ago

pcanterini commented 8 years ago

npm run lint requires the mentioned packages

pcanterini commented 8 years ago

Another option would be to include the eslint as a devDependency and use:

"scripts": {
    ...
    "lint": "/node_modules/.bin/eslint ./src/"
},

instead of:

"scripts": {
    ...
    "lint": "eslint src"
},