Skip to content

Commit

Permalink
fix: move clap_complete_nushell to workspace Cargo.toml (#605)
Browse files Browse the repository at this point in the history
  • Loading branch information
hougesen authored Jan 12, 2025
1 parent b5d6038 commit 9b6d917
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

#### [Unreleased](https://github.com/hougesen/mdsf/compare/v0.3.2...HEAD)

- fix: move clap_complete_nushell to workspace Cargo.toml [`#605`](https://github.com/hougesen/mdsf/pull/605)
- fix: change Shell to Self [`#604`](https://github.com/hougesen/mdsf/pull/604)
- feat: add support for shellcheck [`#603`](https://github.com/hougesen/mdsf/pull/603)
- feat: add support for solhint [`#602`](https://github.com/hougesen/mdsf/pull/602)
- feat: add support for salt-lint [`#601`](https://github.com/hougesen/mdsf/pull/601)
Expand Down
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ exclude = []
anyhow = "1.0.95"
clap = { version = "4.5.26", features = ["derive"] }
clap_complete = "4.5.42"
clap_complete_nushell = "4.5.5"
console = "0.15.10"
convert_case = "0.6.0"
env_logger = "0.11.6"
Expand Down
2 changes: 2 additions & 0 deletions mdsf.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"format_finished_document": false,
"javascript_runtime": "node",
"languages": {
"bash": "shfmt",
"c": "clang-format",
"clojure": [["cljstyle", "joker"]],
"cpp": "clang-format",
Expand All @@ -15,6 +16,7 @@
"elixir": "mix:format",
"elm": "elm-format",
"erlang": [["erlfmt", "efmt"]],
"fish": "fish_indent",
"gleam": "gleam:format",
"go": [
["gci", "goimports-reviser", "goimports"],
Expand Down
2 changes: 1 addition & 1 deletion mdsf/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ json-schema = ["dep:schemars"]
[dependencies]
clap = { workspace = true }
clap_complete = { workspace = true }
clap_complete_nushell = "4.5.5"
clap_complete_nushell = { workspace = true }
console = { workspace = true }
env_logger = { workspace = true }
ignore = { workspace = true }
Expand Down

0 comments on commit 9b6d917

Please sign in to comment.