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
The ESLint Code Climate engine is intended to run statically against a project workspace. Project dependencies are not installed via npm or yarn prior to analysis. Any ESLint rules that require module resolution will result in a Code Climate issue similar to the following:
We should either maintain a blocklist of rules to skip during analysis or implement a patch that triggers a skip whenever an unexpected module resolution is executed. We may also want to warn to STDERR when ignoring an ESLint check, providing the check name in the message.
If we decide upon a blocklist approach, all currently vendored plugins should be audited for rules that rely on module resolution.
The text was updated successfully, but these errors were encountered:
The ESLint Code Climate engine is intended to run statically against a project workspace. Project dependencies are not installed via npm or yarn prior to analysis. Any ESLint rules that require module resolution will result in a Code Climate issue similar to the following:
We should either maintain a blocklist of rules to skip during analysis or implement a patch that triggers a skip whenever an unexpected module resolution is executed. We may also want to warn to STDERR when ignoring an ESLint check, providing the check name in the message.
If we decide upon a blocklist approach, all currently vendored plugins should be audited for rules that rely on module resolution.
The text was updated successfully, but these errors were encountered: