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
{{ message }}
This repository has been archived by the owner on Nov 10, 2022. It is now read-only.
This lib creates a tmp directory with changed files only, in order to lint them.
However this causes issues when using Eslint rule import/no-unresolved. When a changed file (changed line, to be precise) imports another file, which was not changed (not incl. in the git diff), this rule check will fail.
The solution can be to copy the whole codebase into the tmp directory, not just the changed files.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
This lib creates a tmp directory with changed files only, in order to lint them.
However this causes issues when using Eslint rule
import/no-unresolved
. When a changed file (changed line, to be precise) imports another file, which was not changed (not incl. in the git diff), this rule check will fail.The solution can be to copy the whole codebase into the tmp directory, not just the changed files.
The text was updated successfully, but these errors were encountered: