You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support for Meteor was recently added to the eslint engine, but I forgot to mention another key component. Meteor projects often import like this:
import { Meteor } from 'meteor'
import /imports/ui/components/button/button
Typically the eslint engine fails both with the error Resolve error: unable to load resolver "meteor".. The fix is to use the eslint-import-resolver-meteor plugin, which is also recommended by Meteor's official guide.