We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
import/no-unresolved
1 parent cc4e2c0 commit 540d6bdCopy full SHA for 540d6bd
packages/browser/test/e2e/.eslintrc.js
@@ -8,6 +8,11 @@ module.exports = {
8
parserOptions: {
9
sourceType: 'module',
10
},
11
- extends: ['../../.eslintrc.js', 'plugin:import/typescript'],
+ // This rule gives false positives on GH Actions.
12
+ // Ref: https://github.com/import-js/eslint-plugin-import/issues/1037
13
+ rules: {
14
+ 'import/no-unresolved': 'off',
15
+ },
16
+ extends: ['../../.eslintrc.js'],
17
ignorePatterns: ['scenarios/**'],
18
};
0 commit comments