Add eslint rule to prohibit import.meta.glob usage

This commit is contained in:
Alex Gleason
2026-03-28 02:19:55 -05:00
parent 30bd73f8f9
commit 56002c68ca
+7
View File
@@ -39,6 +39,13 @@ export default tseslint.config(
},
],
"custom/no-placeholder-comments": "error",
"no-restricted-syntax": [
"error",
{
"selector": "CallExpression[callee.object.type='MetaProperty'][callee.property.name='glob']",
"message": "import.meta.glob is Vite-only and breaks other bundlers. Inline the assets or use standard imports instead.",
},
],
"no-warning-comments": [
"error",
{ terms: ["fixme"] },