-
Notifications
You must be signed in to change notification settings - Fork 13
Update dependencies for install #38
Comments
Thanks for the detailed issue @swashata, I think this is a Yarn specific issue to be honest (if it was also npm I'd have expected similar reported issues) Currently There is also quite possibly some incompatibility between the versions you are using, the v2.0.0 release of With all that said, later today I'll be releasing some new versions of both the packages in question which will resolve this issue anyway (I believe) |
Great. I will be waiting for the release. Just to clarify, if I use "devDependencies": {
"eslint": "^4.18.2",
"eslint-config-wordpress": "^2.0.0",
"eslint-plugin-html": "^4.0.2",
"eslint-plugin-react": "^7.7.0"
} there was some other error, like |
Theoretically the release of |
Great... |
@ntwb I just want to let you know that I was wrong with the I understand why I was wrong. Now I have set things up with VSCode to automatically fix possible errors and formatting on save. Do you think I can send a PR with documentation for the same? |
Thanks for the update @swashata... It's pretty easy to do, I've got myself confused a couple of times in the past 24 hours 😏 A PR with those docs would be fanastic 😄 |
Alright. One last thing. Should the docs go into |
This option |
I understand that
eslint-config-wordpress
is the only package I need to install foreslint
ing with WordPress standard and not theeslint-plugin-wordpress
as the first should have the second as a dependency.But I think, because the dependency is defined in
devDependencies
and not withindependencies
theeslint-plugin-wordpress
never gets installed.I added
eslint-config-wordpress
like this (because the one in package repo is outdated.But this always complains
So I update the
package.json
and link the dependency manually byand now this works as expected.
Is it the intended behavior or is there something wrong?
The text was updated successfully, but these errors were encountered: