You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I saw some eslint warnings about undefined globals in the hello-world.spec.js file:
❯ yarn lint
yarn run v1.22.17
$ eslint .
/Users/kaitm/Exercism/wasm/hello-world/hello-world.spec.js
12:24 error 'WebAssembly' is not defined no-undef
26:26 error 'WebAssembly' is not defined no-undef
27:31 error 'WebAssembly' is not defined no-undef
Adding WebAssembly to eslint globals fixed it for me:
// .eslintrc
"globals": {
"WebAssembly": true
},
The text was updated successfully, but these errors were encountered:
I saw some eslint warnings about undefined globals in the hello-world.spec.js file:
Adding WebAssembly to eslint globals fixed it for me:
The text was updated successfully, but these errors were encountered: