Skip to content

Commit

Permalink
fix: glob paths in markdownlint and cspell
Browse files Browse the repository at this point in the history
  • Loading branch information
apskhem committed Dec 21, 2023
1 parent 55897ec commit a8fdc25
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .markdownlint-cli2.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
],
"ignores": [
".config/dictionaries/**",
"hermes/**/target/**",
"hermes/wasm/*/**/**"
"**/target/**",
"hermes/wasm/*/**"
],
// Set standard config options in `/.markdownlint.jsonc`
"config": {
Expand Down
2 changes: 1 addition & 1 deletion cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,6 @@
"**/.gitignore",
".vscode/**",
"**/.idea/**",
"hermes/wasm/*/**/**"
"hermes/wasm/*/**"
]
}
1 change: 1 addition & 0 deletions hermes/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ members = [
edition = "2021"
version = "0.0.1"
authors = [
"Apisit Ritreungroj <[email protected]>",
"Steven Johnson <[email protected]>"
]
rust-version = "1.73"
Expand Down
1 change: 0 additions & 1 deletion hermes/wasm/Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ fork-wasi-component-adapter:
ARG wasi_git_dir=wasmtime/crates/wasi-preview1-component-adapter

# Remove the existing local one. Clone and extract it from the repo.
# And finally move the Earthfile back.
RUN rm -rf $wasi_local_dir/ || true && \
rm -rf $wit_local_dir/ || true && \
git clone --depth 1 https://github.com/bytecodealliance/wasmtime.git && \
Expand Down

0 comments on commit a8fdc25

Please sign in to comment.