Update checked-in dependencies

This commit is contained in:
github-actions[bot] 2024-09-23 17:29:51 +00:00
parent 65e62c7ee1
commit 7a2719db05
123 changed files with 2903 additions and 1746 deletions

View file

@ -0,0 +1,14 @@
/**
* unopinionated config. just the things that are necessarily runtime errors
* waiting to happen.
* @type {Object}
*/
module.exports = {
rules: {
'import/no-unresolved': 2,
'import/named': 2,
'import/namespace': 2,
'import/default': 2,
'import/export': 2,
},
};