go-web-backend
go-web-backend copied to clipboard
flowtype-errors fails the lint
Plugin still fails for me with lates deps.
@amilajack if you willing to get to the bottom of it — let me know :)
Oops! Something went wrong! :(
ESLint couldn't find the plugin "eslint-plugin-flowtype-errors". This can happen for a couple different reasons:
1. If ESLint is installed globally, then make sure eslint-plugin-flowtype-errors is also installed globally. A globally-installed ESLint cannot find a locally-installed plugin.
2. If ESLint is installed locally, then it's likely that the plugin isn't installed correctly. Try reinstalling by running the following:
npm i eslint-plugin-flowtype-errors@latest --save-dev
If you still can't figure out the problem, please stop by https://gitter.im/eslint/eslint to chat with the team.
Working on this now. Sorry about the breakage
Seems to work fine just for me. I did a fresh clone, npm install, made some type errors that flow could catch, and ran npm run lint
Tested a quick demo against flowtype.org
Code in the example is in index.js
Try this again:
npm cache clean
rm -rf node_modues
npm i
npm run lint
@olegakbarov what's the status of this?