Skip to content

Commit 6ee3825

Browse files
committed
Added bump-utils to import/no-unresolved ignorelist
1 parent 3e0c980 commit 6ee3825

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

eslint.config.mjs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ export default [
4646
'no-empty': 'off', // allow empty blocks
4747
'no-inner-declarations': 'off', // allow function declarations anywhere
4848
'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
49+
'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
5051
}
5152
},
5253
{ files: ['**/*.json'], language: 'json/json', ...json.configs.recommended },

0 commit comments

Comments
 (0)