diff --git a/CHANGELOG.md b/CHANGELOG.md index 98dd61b..629c6ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/Cargo.toml b/Cargo.toml index df92926..9853403 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" diff --git a/mdsf.json b/mdsf.json index 9b10031..81cc36d 100644 --- a/mdsf.json +++ b/mdsf.json @@ -4,6 +4,7 @@ "format_finished_document": false, "javascript_runtime": "node", "languages": { + "bash": "shfmt", "c": "clang-format", "clojure": [["cljstyle", "joker"]], "cpp": "clang-format", @@ -15,6 +16,7 @@ "elixir": "mix:format", "elm": "elm-format", "erlang": [["erlfmt", "efmt"]], + "fish": "fish_indent", "gleam": "gleam:format", "go": [ ["gci", "goimports-reviser", "goimports"], diff --git a/mdsf/Cargo.toml b/mdsf/Cargo.toml index 3e1a249..51992a1 100644 --- a/mdsf/Cargo.toml +++ b/mdsf/Cargo.toml @@ -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 }