A new type of shell
This report presents the forensic synthetic code analysis of nushell/nushell, a Rust project with 39,998 GitHub stars. SynthScan v2.0 examined 409,337 lines of code across 1990 source files, recording 808 pattern matches distributed across 10 syntactic categories. The overall adjusted score of 2.6 places this repository in the Likely human-written band.
The scanner applied 160+ deterministic lexical heuristics, multi-line block detectors, abstract syntax tree depth profilers, and a cross-file Jaccard similarity matrix to construct a statistically normalised synthetic code estimate. All matches are individually weighted by severity coefficient and contextual multiplier before summation, and the resulting headline score is temporally discounted to account for the repository's development history relative to the commercial emergence of large language model coding tooling (November 2022 onward).
This chart maps the temporal evolution of the adjusted synthetic code score across successive scan runs. An upward trajectory indicates ongoing incorporation of AI-generated code or expanding LLM-assisted scaffolding; a stable or declining trajectory may reflect active human refactoring, code removal, or the adoption of stricter authorship policies. The dashed secondary line (right axis) independently tracks total raw pattern hit count, which can diverge from the normalised score when codebase size changes significantly between scans.
Classifies detected patterns by their diagnostic confidence and structural impact. CRITICAL patterns (coefficient 10) represent definitive synthetic signatures — hallucinated imports, explicit LLM attribution metadata — virtually never produced by human authors. HIGH (5) indicates strong structural tells such as cross-file repetition or cross-linguistic idioms. MEDIUM (2) covers recognisable conversational padding and AI-specific vocabulary. LOW (1) captures subtle indicators like tautological comments and generic boilerplate that require density to carry independent signal.
This horizontal bar chart decomposes the repository's raw synthetic code score by top-level directory, allowing you to pinpoint precisely which modules or components carry the highest AI authorship density. Directories with disproportionately high scores relative to their size warrant targeted manual review: concentrated AI signatures often trace back to mass-generated configuration layers, auto-ported test suites, LLM-scaffolded boilerplate classes, or entire subsystems authored under heavy copilot assistance. Use this view to prioritise your human code-review effort.
The scanner identified 808 distinct pattern matches across 10 syntactic categories. Each entry below represents a discrete location in the source code where the engine recorded a statistically significant AI authorship indicator. Expand any category row to inspect the individual file paths, line numbers, code snippets, and the lexical context (CODE, COMMENT, or STRING) in which each match was detected.
Reading the findings table: The Severity column indicates the diagnostic confidence level (CRITICAL / HIGH / MEDIUM / LOW). The Context column identifies whether the match occurred inside executable code, an inline comment, or a string literal — comment-context matches receive a ×1.5 weight because LLMs systematically over-annotate. The ⚡ bolt icon marks clustered matches: three or more patterns within a 10-line window, each receiving an additional ×1.5 density multiplier as dense clusters constitute far stronger evidence of synthetic authorship than isolated hits.
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | README.md | 101 | # => │ 0 │ .cargo │ dir │ 0 B │ 9 minutes ago │ | COMMENT |
| LOW | README.md | 141 | COMMENT | |
| LOW | README.md | 161 | # => ╭───────────────┬────────────────────────────────────╮ | COMMENT |
| LOW | rust-toolchain.toml | 1 | # So, you want to update the Rust toolchain... | COMMENT |
| LOW | crates/nu-term-grid/src/grid.rs | 1 | // Thanks to https://github.com/ogham/rust-term-grid for making this available | COMMENT |
| LOW | crates/nu-term-grid/src/grid.rs | 21 | //! println!("{}", grid.fit_into_width(24).unwrap()); | COMMENT |
| LOW | crates/nu-term-grid/src/grid.rs | 41 | //! - `filling`: what to put in between two columns — either a number of | COMMENT |
| LOW | crates/nu-term-grid/src/grid.rs | 61 | //! on a `Grid` value. It takes as its argument the number of columns. | COMMENT |
| LOW | crates/nu-term-grid/src/grid.rs | 81 | //! However, you may also want to supply your own width: when you already know the | COMMENT |
| LOW | crates/nu-term-grid/src/grid.rs | 101 | } | COMMENT |
| LOW | crates/nu-engine/src/env.rs | 221 | if let Expr::Var(id) = x.expr { | COMMENT |
| LOW | crates/nu-engine/src/closure_eval.rs | 21 | /// # use nu_protocol::{PipelineData, Value}; | COMMENT |
| LOW | crates/nu-engine/src/closure_eval.rs | 41 | /// let mut closure = ClosureEval::new(engine_state, stack, closure); | COMMENT |
| LOW | crates/nu-engine/src/closure_eval.rs | 161 | self.run_with_input(value.into_pipeline_data_with_metadata(metadata)) | COMMENT |
| LOW | crates/nu-engine/src/closure_eval.rs | 181 | /// .unwrap() | COMMENT |
| LOW | crates/nu-engine/src/documentation.rs | 301 | "{help_section_name}Usage{RESET}:\n > {}\n", | COMMENT |
| LOW | crates/nu-engine/src/compile/keyword.rs | 141 | pub(crate) fn compile_match( | COMMENT |
| LOW | crates/nu-engine/src/compile/keyword.rs | 301 | /// - `input | let x`: stores the value and **passes it through** to the next pipeline element | COMMENT |
| LOW | crates/nu-engine/src/compile/keyword.rs | 421 | pub(crate) fn compile_try( | COMMENT |
| LOW | crates/nu-engine/src/compile/keyword.rs | 441 | // END: | COMMENT |
| LOW | crates/nu-engine/src/compile/keyword.rs | 1101 | } | COMMENT |
| LOW | crates/nu-plugin-engine/src/persistent.rs | 21 | /// not running. | COMMENT |
| LOW | crates/nu-plugin-engine/src/interface/mod.rs | 101 | /// State that the manager keeps for each plugin call during its lifetime. | COMMENT |
| LOW | crates/nu-heavy-utils/src/merge.rs | 1 | //! Merging behavior for [`Value`]s. | COMMENT |
| LOW | crates/nu-heavy-utils/src/merge.rs | 21 | //! "a" => 42, | COMMENT |
| LOW | crates/nu-heavy-utils/src/merge.rs | 81 | /// | COMMENT |
| LOW | crates/nu-heavy-utils/src/merge.rs | 101 | /// ["a", "c"]; | COMMENT |
| LOW | crates/nu-heavy-utils/src/yaml/serialize.rs | 1 | //! YAML serialization. | COMMENT |
| LOW | crates/nu-heavy-utils/src/yaml/serialize.rs | 61 | /// let options = SerializeOptions::default() | COMMENT |
| LOW | crates/nu-heavy-utils/src/yaml/mod.rs | 1 | //! YAML parsing and serialization for Nushell values. | COMMENT |
| LOW | crates/nu-heavy-utils/src/yaml/mod.rs | 21 | //! | COMMENT |
| LOW | crates/nu-heavy-utils/src/yaml/mod.rs | 61 | /// YAML spec version to comply to. | COMMENT |
| LOW | crates/nu-heavy-utils/src/yaml/mod.rs | 81 | #[default] | COMMENT |
| LOW | crates/nu-heavy-utils/src/yaml/mod.rs | 101 | /// Sequence language-independent type for YAML, version 1.1 | COMMENT |
| LOW | crates/nu-heavy-utils/src/yaml/mod.rs | 121 | /// Reference: <https://yaml.org/type/bool.html> | COMMENT |
| LOW | crates/nu-heavy-utils/src/yaml/mod.rs | 141 | Binary, | COMMENT |
| LOW | crates/nu-heavy-utils/src/yaml/mod.rs | 161 | /// Merge key language-independent type for YAML, version 1.1 | COMMENT |
| LOW | crates/nu-heavy-utils/src/yaml/mod.rs | 181 | /// Reference: <https://yaml.org/type/yaml.html> | COMMENT |
| LOW | crates/nu-heavy-utils/src/yaml/mod.rs | 201 | #[strum(to_string = "!duration", serialize = "tag:nushell.sh,2026:duration")] | COMMENT |
| LOW | crates/nu-heavy-utils/src/yaml/parse.rs | 1 | //! YAML parsing. | COMMENT |
| LOW | crates/nu-heavy-utils/src/yaml/parse.rs | 21 | //! Throughout these functions, we refer to two different spans: | COMMENT |
| LOW | crates/nu-heavy-utils/src/yaml/parse.rs | 61 | /// | COMMENT |
| LOW | crates/nu-heavy-utils/src/yaml/parse.rs | 101 | /// Configure how multiple documents in a YAML stream are handled. | COMMENT |
| LOW | crates/nu-heavy-utils/src/yaml/parse.rs | 121 | #[nu_value(rename = "single")] | COMMENT |
| LOW | crates/nuon/src/lib.rs | 461 | // OutsideSpannedLabeledError { | COMMENT |
| LOW | crates/nuon/src/from.rs | 21 | /// | COMMENT |
| LOW | crates/nuon/src/to.rs | 1 | use core::fmt::Write; | COMMENT |
| LOW | crates/nuon/src/to.rs | 81 | self | COMMENT |
| LOW | crates/nuon/src/to.rs | 101 | /// ```text | COMMENT |
| LOW | crates/nuon/src/to.rs | 121 | /// | COMMENT |
| LOW | crates/nu-test-support/src/lib.rs | 1 | #![expect(clippy::test_attr_in_doctest)] | COMMENT |
| LOW | crates/nu-test-support/src/lib.rs | 21 | //! ## Setup for Unit Tests | COMMENT |
| LOW | crates/nu-test-support/src/lib.rs | 41 | //! autotests = false # disable automatically found tests | COMMENT |
| LOW | crates/nu-test-support/src/lib.rs | 61 | //! This overrides the prelude macros with those from this crate, in particular the | COMMENT |
| LOW | crates/nu-test-support/src/lib.rs | 81 | //! It can also be explicitly disabled with | COMMENT |
| LOW | crates/nu-test-support/src/lib.rs | 101 | //! | COMMENT |
| LOW | crates/nu-test-support/src/lib.rs | 121 | //! | COMMENT |
| LOW | crates/nu-test-support/src/lib.rs | 141 | //! ``` | COMMENT |
| LOW | crates/nu-test-support/src/lib.rs | 161 | //! ## Pulling Data out of Test Run | COMMENT |
| LOW | crates/nu-test-support/src/lib.rs | 181 | //! let num: f64 = test().run("12.34 + 2")?; | COMMENT |
| 592 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | README.md | 98 | # => ╭────┬──────────┬──────┬─────────┬───────────────╮ | COMMENT |
| MEDIUM | README.md | 100 | # => ├────┼──────────┼──────┼─────────┼───────────────┤ | COMMENT |
| MEDIUM | README.md | 113 | # => ╰────┴──────────┴──────┴─────────┴───────────────╯ | COMMENT |
| MEDIUM⚡ | README.md | 128 | # => ╭───┬───────┬───────────┬───────┬───────────┬───────────╮ | COMMENT |
| MEDIUM⚡ | README.md | 130 | # => ├───┼───────┼───────────┼───────┼───────────┼───────────┤ | COMMENT |
| MEDIUM⚡ | README.md | 134 | # => ╰───┴───────┴───────────┴───────┴───────────┴───────────╯ | COMMENT |
| MEDIUM⚡ | README.md | 144 | # => ╭──────────────────┬────────────────────╮ | COMMENT |
| MEDIUM⚡ | README.md | 154 | # => ╰──────────────────┴────────────────────╯ | COMMENT |
| MEDIUM⚡ | README.md | 161 | # => ╭───────────────┬────────────────────────────────────╮ | COMMENT |
| MEDIUM | README.md | 175 | # => ╰───────────────┴────────────────────────────────────╯ | COMMENT |
| MEDIUM | crates/nu-std/README.md | 13 | #┬───────────name────────────┬───────────────────description─────────────────── | COMMENT |
| MEDIUM | crates/nu-cli/src/prompt_update.rs | 28 | // ──────────────────────────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | crates/nu-cli/src/prompt_update.rs | 30 | // ──────────────────────────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | crates/nu-glob/src/dc_glob/mod.rs | 446 | // ── parser tests ────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | crates/nu-glob/src/dc_glob/mod.rs | 598 | // ── compiler tests ──────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | crates/nu-glob/src/dc_glob/mod.rs | 725 | // ── matcher tests ───────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | crates/nu-glob/src/dc_glob/mod.rs | 842 | // ── traversal start dir tests ────────────────────────────────────────────── | COMMENT |
| MEDIUM | crates/nu-explore/src/explore_regex/ui.rs | 26 | // ─── Key Action Handling ───────────────────────────────────────────────────── | COMMENT |
| MEDIUM | crates/nu-explore/src/explore_regex/ui.rs | 106 | // ─── Main Loop ─────────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | crates/nu-explore/src/explore_regex/ui.rs | 174 | // ─── Main Loop ─────────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | crates/nu-explore/src/explore_regex/ui.rs | 212 | // ─── UI Drawing ────────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | crates/nu-explore/src/explore_regex/ui.rs | 266 | // ─── Section Drawing Helpers ───────────────────────────────────────────────── | COMMENT |
| MEDIUM | crates/nu-explore/src/explore_regex/ui.rs | 375 | // ─── Label Building Helpers ────────────────────────────────────────────────── | COMMENT |
| MEDIUM | crates/nu-explore/src/explore_regex/ui.rs | 404 | // ─── Help Bar ──────────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | crates/nu-explore/src/explore_regex/ui.rs | 453 | // ─── Quick Reference Panel ─────────────────────────────────────────────────── | COMMENT |
| MEDIUM | crates/nu-explore/src/explore_regex/ui.rs | 560 | // ─── Help Modal Overlay ─────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | crates/nu-explore/src/explore_regex/app.rs | 164 | // ─── Quick Reference Panel ─────────────────────────────────────────── | COMMENT |
| MEDIUM | crates/nu-explore/src/explore_regex/app.rs | 313 | // ─── is_selectable tests ───────────────────────────────────────────────── | COMMENT |
| MEDIUM | crates/nu-explore/src/explore_regex/app.rs | 343 | // ─── find_next_item tests ──────────────────────────────────────────────── | COMMENT |
| MEDIUM | crates/nu-explore/src/explore_regex/app.rs | 381 | // ─── find_prev_item tests ──────────────────────────────────────────────── | COMMENT |
| MEDIUM | crates/nu-explore/src/explore_regex/app.rs | 421 | // ─── find_nearest_item tests ───────────────────────────────────────────── | COMMENT |
| MEDIUM | crates/nu-explore/src/explore_regex/app.rs | 451 | // ─── find_nearest_item_reverse tests ───────────────────────────────────── | COMMENT |
| MEDIUM | crates/nu-explore/src/explore_regex/app.rs | 482 | // ─── Navigation method tests (quick_ref_up/down) ───────────────────────── | COMMENT |
| MEDIUM | crates/nu-explore/src/explore_regex/app.rs | 544 | // ─── Page navigation tests ─────────────────────────────────────────────── | COMMENT |
| MEDIUM | crates/nu-explore/src/explore_regex/app.rs | 631 | // ─── Horizontal scroll tests ───────────────────────────────────────────── | COMMENT |
| MEDIUM | crates/nu-explore/src/explore_regex/app.rs | 684 | // ─── Unicode handling tests ─────────────────────────────────────────────── | COMMENT |
| MEDIUM | crates/nu-explore/src/explore_regex/app.rs | 695 | // ─── get_highlights tests ───────────────────────────────────────────────── | COMMENT |
| MEDIUM | crates/nu-explore/src/explore_regex/app.rs | 785 | // ─── Helper ────────────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | crates/nu-command/tests/format_conversions/html.rs | 50 | "<html><style>body { background-color:white;color:black; }</style><body>Change directory.<br><br>Usage:<br> > | CODE |
| MEDIUM⚡ | crates/nu-command/tests/commands/table.rs | 3546 | "╭───┬───┬───┬────────────────╮│ # │ a │ b │ c │├───┼───┼───┼────────────────┤│ 0 │ 1 │ 2 │ | CODE |
| MEDIUM⚡ | crates/nu-command/tests/commands/table.rs | 3554 | "╭───┬─────┬─────┬────────────────╮│ # │ a │ b │ c │├───┼─────┼─────┼────────────────┤│ 0 │ 1 | CODE |
| MEDIUM⚡ | crates/nu-command/tests/commands/table.rs | 3562 | "╭───┬─────┬─────┬─────╮│ # │ a │ b │ c │├───┼─────┼─────┼─────┤│ 0 │ 1 │ 2 │ 3 ││ 1 │ ... │ ... │ . | CODE |
| MEDIUM⚡ | crates/nu-command/tests/commands/table.rs | 3642 | "╭───┬───┬───┬────────────────╮│ # │ a │ b │ c │├───┼───┼───┼────────────────┤│ 0 │ 1 │ 2 │ | CODE |
| MEDIUM⚡ | crates/nu-command/tests/commands/table.rs | 3650 | "╭───┬─────┬─────┬────────────────╮│ # │ a │ b │ c │├───┼─────┼─────┼────────────────┤│ 0 │ 1 | CODE |
| MEDIUM⚡ | crates/nu-command/tests/commands/table.rs | 3658 | "╭───┬─────┬─────┬─────╮│ # │ a │ b │ c │├───┼─────┼─────┼─────┤│ 0 │ 1 │ 2 │ 3 ││ 1 │ ... │ ... │ . | CODE |
| MEDIUM | crates/nu-command/tests/commands/table.rs | 3212 | "─#───a───b─────────c──────── 0 1 2 3 1 4 5 [list 3 items] ", | CODE |
| MEDIUM | crates/nu-command/tests/commands/table.rs | 3213 | "─#───a───b─────────c──────── 0 1 2 3 1 4 5 [list 3 items] ─#───a───b─────────c─── | CODE |
| MEDIUM | crates/nu-command/tests/commands/table.rs | 3238 | "─#─┬─a─┬─b─┬───────c──────── 0 │ 1 │ 2 │ 3 1 │ 4 │ 5 │ [list 3 items] ───┴───┴───┴─────────── | CODE |
| MEDIUM | crates/nu-command/tests/commands/table.rs | 3239 | "─#─┬─a─┬─b─┬───────c──────── 0 │ 1 │ 2 │ 3 1 │ 4 │ 5 │ [list 3 items] ─#─┴─a─┴─b─┴───────c─── | CODE |
| MEDIUM | crates/nu-command/tests/commands/table.rs | 3251 | "─#─┼─a─┼─b─┼───────c──────── 0 │ 1 │ 2 │ 3 1 │ 4 │ 5 │ [list 3 items] ", | CODE |
| MEDIUM | crates/nu-command/tests/commands/table.rs | 3252 | "─#─┼─a─┼─b─┼───────c──────── 0 │ 1 │ 2 │ 3 1 │ 4 │ 5 │ [list 3 items] ─#─┼─a─┼─b─┼───────c─── | CODE |
| MEDIUM | crates/nu-command/tests/commands/table.rs | 3264 | "═#═╦═a═╦═b═╦═══════c════════ 0 ║ 1 ║ 2 ║ 3 1 ║ 4 ║ 5 ║ [list 3 items] ═══╩═══╩═══╩═══════════ | CODE |
| MEDIUM | crates/nu-command/tests/commands/table.rs | 3265 | "═#═╦═a═╦═b═╦═══════c════════ 0 ║ 1 ║ 2 ║ 3 1 ║ 4 ║ 5 ║ [list 3 items] ═#═╩═a═╩═b═╩═══════c═══ | CODE |
| MEDIUM | crates/nu-command/tests/commands/table.rs | 3277 | "╭─#─┬─a─┬─b─┬───────c────────╮│ 0 │ 1 │ 2 │ 3 ││ 1 │ 4 │ 5 │ [list 3 items] │╰───┴───┴───┴──── | CODE |
| MEDIUM | crates/nu-command/tests/commands/table.rs | 3278 | "╭─#─┬─a─┬─b─┬───────c────────╮│ 0 │ 1 │ 2 │ 3 ││ 1 │ 4 │ 5 │ [list 3 items] │╰─#─┴─a─┴─b─┴──── | CODE |
| MEDIUM | crates/nu-command/tests/commands/table.rs | 3290 | "┏━#━┳━a━┳━b━┳━━━━━━━c━━━━━━━━┓┃ 0 ┃ 1 ┃ 2 ┃ 3 ┃┃ 1 ┃ 4 ┃ 5 ┃ [list 3 items] ┃┗━━━┻━━━┻━━━┻━━━━ | CODE |
| MEDIUM | crates/nu-command/tests/commands/table.rs | 3291 | "┏━#━┳━a━┳━b━┳━━━━━━━c━━━━━━━━┓┃ 0 ┃ 1 ┃ 2 ┃ 3 ┃┃ 1 ┃ 4 ┃ 5 ┃ [list 3 items] ┃┗━#━┻━a━┻━b━┻━━━━ | CODE |
| MEDIUM | crates/nu-command/tests/commands/table.rs | 3303 | "┏─#─┬─a─┬─b─┬───────c────────┓│ 0 │ 1 │ 2 │ 3 ││ 1 │ 4 │ 5 │ [list 3 items] │┗───┴───┴───┴──── | CODE |
| MEDIUM | crates/nu-command/tests/commands/table.rs | 3304 | "┏─#─┬─a─┬─b─┬───────c────────┓│ 0 │ 1 │ 2 │ 3 ││ 1 │ 4 │ 5 │ [list 3 items] │┗─#─┴─a─┴─b─┴──── | CODE |
| MEDIUM | crates/nu-command/tests/commands/table.rs | 3329 | "╭─#─┬─a─┬─b─┬───────c────────╮│ 0 │ 1 │ 2 │ 3 ││ 1 │ 4 │ 5 │ [list 3 items] │╰───┴───┴───┴──── | CODE |
| 64 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | crates/nu-test-support/src/lib.rs | 6 | //! It offers a [custom test harness](#custom-test-harness) to control the environment tests run in, along with | COMMENT |
| MEDIUM | crates/nu-test-support/src/lib.rs | 46 | //! harness = false # disable the test harness | COMMENT |
| MEDIUM | crates/nu-test-support/src/lib.rs | 516 | //! `#[exp]` attribute provided by the custom test harness. | COMMENT |
| MEDIUM | crates/nu-test-support/src/harness/mod.rs | 71 | #[linkme(crate = nu_test_support::harness::linkme)] | COMMENT |
| MEDIUM | crates/nu-utils/src/casing.rs | 17 | /// Essentially `to_folded_case(a) == to_folded_case(b)`, but without | COMMENT |
| MEDIUM | crates/nu-utils/src/casing.rs | 25 | /// Essentially `to_folded_case(a) == to_folded_case(b)`, but without | COMMENT |
| MEDIUM | crates/nu-protocol/src/value/mod.rs | 2195 | /// This method is able to leverage that information encoded in a `Value` to provide more accurate | COMMENT |
| MEDIUM | crates/nu-protocol/src/errors/shell_error/io.rs | 89 | /// This allows seamless transfer of `ShellError` instances where `std::io::Error` is expected. | COMMENT |
| MEDIUM | crates/nu-test-support-macros/src/test.rs | 79 | #[::nu_test_support::collect_test(::nu_test_support::harness::TESTS)] | COMMENT |
| MEDIUM | crates/nu-test-support-macros/src/test.rs | 80 | #[linkme(crate = ::nu_test_support::harness::linkme)] | COMMENT |
| MEDIUM | crates/nu-plugin/src/lib.rs | 11 | //! the typed data that Nushell commands utilize natively. | COMMENT |
| MEDIUM | crates/nu-command/tests/commands/table.rs | 1030 | "│ bench │ │ # │ name │ harness │ │", | CODE |
| MEDIUM | crates/nu-command/tests/commands/table.rs | 1222 | "│ bench │ │ # │ name │ harness │ | CODE |
| MEDIUM | crates/nu-command/tests/commands/table.rs | 1487 | "│ bench │ │ # │ name │ harness │ │", | CODE |
| MEDIUM | crates/nu-command/src/viewers/table.rs | 685 | // TODO: more robust error classification | COMMENT |
| MEDIUM | crates/nu-command/src/viewers/table.rs | 1274 | // TODO: more robust error classification | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | crates/nu-config/src/paths.rs | 35 | /// A missing file is an error; do not scaffold. | COMMENT |
| MEDIUM | crates/nu-config/src/config_file.rs | 4 | /// its scaffold template. | COMMENT |
| MEDIUM | crates/nu-config/src/config_file.rs | 24 | /// The scaffold content written when the file does not exist on first | COMMENT |
| MEDIUM | src/config_files.rs | 73 | // Default path under config_home — may scaffold on first run. | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| CRITICAL | crates/nu-table/src/types/expanded.rs | 512 | cfg.opts.config.table.missing_value_symbol.clone(), | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | crates/nu-term-grid/src/grid.rs | 33 | //! ## Creating a grid | COMMENT |
| MEDIUM | .github/workflows/nightly-build.yml | 212 | # Create a release only in nushell/nightly repo | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | crates/nu-heavy-utils/src/yaml/serialize.rs | 492 | // TODO: implement structure style values here | COMMENT |
| LOW | crates/nu-protocol/src/errors/shell_error/mod.rs | 1717 | // TODO: implement further chaining than just one | COMMENT |
| LOW | crates/nu-protocol/src/errors/shell_error/mod.rs | 1724 | // TODO: implement this less wasteful | COMMENT |
| LOW | crates/nu-parser/src/parse_shape_specs.rs | 68 | //TODO: Handle error case for unknown shapes | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | crates/nu-utils/src/flatten_json.rs | 86 | /// "name": "John Doe", | COMMENT |
| LOW | crates/nu_plugin_formats/src/from/vcf.rs | 103 | "value" => Value::test_string("foo@bar.com"), | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | crates/nu-command/src/filesystem/ls.rs | 1071 | // Don't forget to close the Find handle | COMMENT |
| LOW | .github/workflows/friendly-config-reminder.yml | 24 | If you changed any of the default values or added a new config option, don't forget to update the [`doc_config | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | crates/nu_plugin_python/nu_plugin_python_example.py | 226 | CODE |