Commit 807fc16d authored by Robert Knight's avatar Robert Knight

Fix lint errors for .mjs files in scripts/

parent 84d3a983
{ {
"env": { "env": {
"node": true, "node": true
}, },
"parserOptions": { "parserOptions": {
"sourceType": "script" "sourceType": "script"
...@@ -9,5 +9,11 @@ ...@@ -9,5 +9,11 @@
"@typescript-eslint/no-var-requires": "off", "@typescript-eslint/no-var-requires": "off",
"no-console": "off", "no-console": "off",
"react-hooks/rules-of-hooks": "off" "react-hooks/rules-of-hooks": "off"
},
"overrides": [
{
"files": ["*.mjs"],
"parserOptions": { "sourceType": "module" }
} }
]
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment