If I put this to my .eslintrc.js file I expect it to ignore only imports starting with #, but instead it turns off the rule for everything.
How can I turn off no-resolved only for files starting with #, as an example require('#testmodule');
rules: {
'import/no-unresolved': [2, { ignore: ['^#.+$'] }],
},