Allow Prettier to format JS generated in wasm projects (#196)

Right now I'm getting ESLint errors because wasm-lib generates a JS project with semicolons.
This didn't use to matter, because `yarn prettier` applied to the Rust projects too. But
in my recent PR https://github.com/KittyCAD/untitled-lang/pull/192 I broke that.

This should fix it by ensuring the generated JS code gets formatted in a way that matches
our ESLint requirements.
This commit is contained in:
Adam Chalmers
2023-07-26 14:45:09 -05:00
committed by GitHub
parent 956e4c46c1
commit 7312035818

View File

@ -3,4 +3,5 @@ build
coverage
# Ignore Rust projects:
src/wasm-lib
*.rs
target