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.
bump-utils
import/no-unresolved
1 parent 3e0c980 commit 6ee3825Copy full SHA for 6ee3825
1 file changed
eslint.config.mjs
@@ -46,7 +46,8 @@ export default [
46
'no-empty': 'off', // allow empty blocks
47
'no-inner-declarations': 'off', // allow function declarations anywhere
48
'no-useless-escape': 'off', // allow all escape chars cause ESLint sucks at detecting truly useless ones
49
- 'no-unused-vars': ['error', { 'caughtErrors': 'none' }] // allow unused named args in catch blocks
+ 'no-unused-vars': ['error', { 'caughtErrors': 'none' }], // allow unused named args in catch blocks
50
+ 'import/no-unresolved': ['error', { ignore: ['bump-utils'] }] // ignore missing bump-utils in --dev mode
51
}
52
},
53
{ files: ['**/*.json'], language: 'json/json', ...json.configs.recommended },
0 commit comments