Following the eslint overrides doc, https://eslint.org/docs/v8.x/use/configure/configuration-files#how-do-overrides-work
The overrides configuration "files": ["bin/*.js", "lib/*.js"] does not work unless I prefix it with a **: **/bin/*.js. I think this is due to the glob trying to match a full path in our code.
Following the eslint
overridesdoc, https://eslint.org/docs/v8.x/use/configure/configuration-files#how-do-overrides-workThe
overridesconfiguration"files": ["bin/*.js", "lib/*.js"]does not work unless I prefix it with a**:**/bin/*.js. I think this is due to the glob trying to match a full path in our code.