Repository Analysis

nushell/nushell

A new type of shell

2.6 Likely human-written View on GitHub

Analysis Overview

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).

2.6
Adjusted Score
2.6
Raw Score
100%
Time Factor
2026-07-13
Last Push
40.0K
Stars
Rust
Language
409.3K
Lines of Code
2.0K
Files
808
Pattern Hits
2026-07-14
Scan Date
0.00
HC Hit Rate

What These Metrics Mean

Adjusted Score
Primary synthetic code indicator. Raw score normalised per 1,000 lines of code and multiplied by the temporal discount factor. This is the definitive comparative metric — use it to rank repositories by AI authorship density.
Raw Score
The unmodified sum of all severity-weighted, context-multiplied pattern match scores before temporal discounting. Reflects the absolute signal strength independent of when the repository was last active.
Time Factor
The temporal discount multiplier (0–100%) applied to the raw score. Repositories last updated before ChatGPT's launch (Nov 2022) receive a 5% factor. Full signal is only assigned to repositories active in the post-adoption era (Jan 2024+).
Pattern Hits
Total count of individual pattern matches across all files and categories. A high hit count with a low score may indicate a very large codebase with isolated AI snippets; a low count with a high score indicates dense, concentrated AI signatures.
HC Hit Rate
High+Critical pattern hits per file, averaged across the repository. This orthogonal signal catches repositories where a few files are densely packed with high-severity AI tells — a strong indicator even when the normalised score appears moderate due to codebase size.
Lines of Code / Files
Total lines and files analysed. The scanner examines 94 file extensions. These denominators are used to normalise the score, enabling fair comparison between repositories of vastly different sizes.

Score History

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.

Severity Breakdown

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.

CRITICAL 1HIGH 0MEDIUM 146LOW 661

Directory Score Breakdown

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.

Pattern Findings

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.

Over-Commented Block652 hits · 594 pts
SeverityFileLineSnippetContext
LOWREADME.md101# => │ 0 │ .cargo │ dir │ 0 B │ 9 minutes ago │COMMENT
LOWREADME.md141COMMENT
LOWREADME.md161# => ╭───────────────┬────────────────────────────────────╮COMMENT
LOWrust-toolchain.toml1# So, you want to update the Rust toolchain...COMMENT
LOWcrates/nu-term-grid/src/grid.rs1// Thanks to https://github.com/ogham/rust-term-grid for making this availableCOMMENT
LOWcrates/nu-term-grid/src/grid.rs21//! println!("{}", grid.fit_into_width(24).unwrap());COMMENT
LOWcrates/nu-term-grid/src/grid.rs41//! - `filling`: what to put in between two columns — either a number ofCOMMENT
LOWcrates/nu-term-grid/src/grid.rs61//! on a `Grid` value. It takes as its argument the number of columns.COMMENT
LOWcrates/nu-term-grid/src/grid.rs81//! However, you may also want to supply your own width: when you already know theCOMMENT
LOWcrates/nu-term-grid/src/grid.rs101}COMMENT
LOWcrates/nu-engine/src/env.rs221 if let Expr::Var(id) = x.expr {COMMENT
LOWcrates/nu-engine/src/closure_eval.rs21/// # use nu_protocol::{PipelineData, Value};COMMENT
LOWcrates/nu-engine/src/closure_eval.rs41/// let mut closure = ClosureEval::new(engine_state, stack, closure);COMMENT
LOWcrates/nu-engine/src/closure_eval.rs161 self.run_with_input(value.into_pipeline_data_with_metadata(metadata))COMMENT
LOWcrates/nu-engine/src/closure_eval.rs181/// .unwrap()COMMENT
LOWcrates/nu-engine/src/documentation.rs301 "{help_section_name}Usage{RESET}:\n > {}\n",COMMENT
LOWcrates/nu-engine/src/compile/keyword.rs141pub(crate) fn compile_match(COMMENT
LOWcrates/nu-engine/src/compile/keyword.rs301/// - `input | let x`: stores the value and **passes it through** to the next pipeline elementCOMMENT
LOWcrates/nu-engine/src/compile/keyword.rs421pub(crate) fn compile_try(COMMENT
LOWcrates/nu-engine/src/compile/keyword.rs441 // END:COMMENT
LOWcrates/nu-engine/src/compile/keyword.rs1101}COMMENT
LOWcrates/nu-plugin-engine/src/persistent.rs21/// not running.COMMENT
LOWcrates/nu-plugin-engine/src/interface/mod.rs101/// State that the manager keeps for each plugin call during its lifetime.COMMENT
LOWcrates/nu-heavy-utils/src/merge.rs1//! Merging behavior for [`Value`]s.COMMENT
LOWcrates/nu-heavy-utils/src/merge.rs21//! "a" => 42,COMMENT
LOWcrates/nu-heavy-utils/src/merge.rs81 ///COMMENT
LOWcrates/nu-heavy-utils/src/merge.rs101 /// ["a", "c"];COMMENT
LOWcrates/nu-heavy-utils/src/yaml/serialize.rs1//! YAML serialization.COMMENT
LOWcrates/nu-heavy-utils/src/yaml/serialize.rs61/// let options = SerializeOptions::default()COMMENT
LOWcrates/nu-heavy-utils/src/yaml/mod.rs1//! YAML parsing and serialization for Nushell values.COMMENT
LOWcrates/nu-heavy-utils/src/yaml/mod.rs21//!COMMENT
LOWcrates/nu-heavy-utils/src/yaml/mod.rs61/// YAML spec version to comply to.COMMENT
LOWcrates/nu-heavy-utils/src/yaml/mod.rs81 #[default]COMMENT
LOWcrates/nu-heavy-utils/src/yaml/mod.rs101 /// Sequence language-independent type for YAML, version 1.1COMMENT
LOWcrates/nu-heavy-utils/src/yaml/mod.rs121 /// Reference: <https://yaml.org/type/bool.html>COMMENT
LOWcrates/nu-heavy-utils/src/yaml/mod.rs141 Binary,COMMENT
LOWcrates/nu-heavy-utils/src/yaml/mod.rs161 /// Merge key language-independent type for YAML, version 1.1COMMENT
LOWcrates/nu-heavy-utils/src/yaml/mod.rs181 /// Reference: <https://yaml.org/type/yaml.html>COMMENT
LOWcrates/nu-heavy-utils/src/yaml/mod.rs201 #[strum(to_string = "!duration", serialize = "tag:nushell.sh,2026:duration")]COMMENT
LOWcrates/nu-heavy-utils/src/yaml/parse.rs1//! YAML parsing.COMMENT
LOWcrates/nu-heavy-utils/src/yaml/parse.rs21//! Throughout these functions, we refer to two different spans:COMMENT
LOWcrates/nu-heavy-utils/src/yaml/parse.rs61///COMMENT
LOWcrates/nu-heavy-utils/src/yaml/parse.rs101/// Configure how multiple documents in a YAML stream are handled.COMMENT
LOWcrates/nu-heavy-utils/src/yaml/parse.rs121 #[nu_value(rename = "single")]COMMENT
LOWcrates/nuon/src/lib.rs461 // OutsideSpannedLabeledError {COMMENT
LOWcrates/nuon/src/from.rs21///COMMENT
LOWcrates/nuon/src/to.rs1use core::fmt::Write;COMMENT
LOWcrates/nuon/src/to.rs81 selfCOMMENT
LOWcrates/nuon/src/to.rs101 /// ```textCOMMENT
LOWcrates/nuon/src/to.rs121///COMMENT
LOWcrates/nu-test-support/src/lib.rs1#![expect(clippy::test_attr_in_doctest)]COMMENT
LOWcrates/nu-test-support/src/lib.rs21//! ## Setup for Unit TestsCOMMENT
LOWcrates/nu-test-support/src/lib.rs41//! autotests = false # disable automatically found testsCOMMENT
LOWcrates/nu-test-support/src/lib.rs61//! This overrides the prelude macros with those from this crate, in particular theCOMMENT
LOWcrates/nu-test-support/src/lib.rs81//! It can also be explicitly disabled withCOMMENT
LOWcrates/nu-test-support/src/lib.rs101//!COMMENT
LOWcrates/nu-test-support/src/lib.rs121//!COMMENT
LOWcrates/nu-test-support/src/lib.rs141//! ```COMMENT
LOWcrates/nu-test-support/src/lib.rs161//! ## Pulling Data out of Test RunCOMMENT
LOWcrates/nu-test-support/src/lib.rs181//! let num: f64 = test().run("12.34 + 2")?;COMMENT
592 more matches not shown…
Decorative Section Separators124 hits · 376 pts
SeverityFileLineSnippetContext
MEDIUMREADME.md98# => ╭────┬──────────┬──────┬─────────┬───────────────╮COMMENT
MEDIUMREADME.md100# => ├────┼──────────┼──────┼─────────┼───────────────┤COMMENT
MEDIUMREADME.md113# => ╰────┴──────────┴──────┴─────────┴───────────────╯COMMENT
MEDIUMREADME.md128# => ╭───┬───────┬───────────┬───────┬───────────┬───────────╮COMMENT
MEDIUMREADME.md130# => ├───┼───────┼───────────┼───────┼───────────┼───────────┤COMMENT
MEDIUMREADME.md134# => ╰───┴───────┴───────────┴───────┴───────────┴───────────╯COMMENT
MEDIUMREADME.md144# => ╭──────────────────┬────────────────────╮COMMENT
MEDIUMREADME.md154# => ╰──────────────────┴────────────────────╯COMMENT
MEDIUMREADME.md161# => ╭───────────────┬────────────────────────────────────╮COMMENT
MEDIUMREADME.md175# => ╰───────────────┴────────────────────────────────────╯COMMENT
MEDIUMcrates/nu-std/README.md13#┬───────────name────────────┬───────────────────description───────────────────COMMENT
MEDIUMcrates/nu-cli/src/prompt_update.rs28// ────────────────────────────────────────────────────────────────────────────────COMMENT
MEDIUMcrates/nu-cli/src/prompt_update.rs30// ────────────────────────────────────────────────────────────────────────────────COMMENT
MEDIUMcrates/nu-glob/src/dc_glob/mod.rs446 // ── parser tests ──────────────────────────────────────────────────────────COMMENT
MEDIUMcrates/nu-glob/src/dc_glob/mod.rs598 // ── compiler tests ────────────────────────────────────────────────────────COMMENT
MEDIUMcrates/nu-glob/src/dc_glob/mod.rs725 // ── matcher tests ─────────────────────────────────────────────────────────COMMENT
MEDIUMcrates/nu-glob/src/dc_glob/mod.rs842 // ── traversal start dir tests ──────────────────────────────────────────────COMMENT
MEDIUMcrates/nu-explore/src/explore_regex/ui.rs26// ─── Key Action Handling ─────────────────────────────────────────────────────COMMENT
MEDIUMcrates/nu-explore/src/explore_regex/ui.rs106// ─── Main Loop ───────────────────────────────────────────────────────────────COMMENT
MEDIUMcrates/nu-explore/src/explore_regex/ui.rs174// ─── Main Loop ───────────────────────────────────────────────────────────────COMMENT
MEDIUMcrates/nu-explore/src/explore_regex/ui.rs212// ─── UI Drawing ──────────────────────────────────────────────────────────────COMMENT
MEDIUMcrates/nu-explore/src/explore_regex/ui.rs266// ─── Section Drawing Helpers ─────────────────────────────────────────────────COMMENT
MEDIUMcrates/nu-explore/src/explore_regex/ui.rs375// ─── Label Building Helpers ──────────────────────────────────────────────────COMMENT
MEDIUMcrates/nu-explore/src/explore_regex/ui.rs404// ─── Help Bar ────────────────────────────────────────────────────────────────COMMENT
MEDIUMcrates/nu-explore/src/explore_regex/ui.rs453// ─── Quick Reference Panel ───────────────────────────────────────────────────COMMENT
MEDIUMcrates/nu-explore/src/explore_regex/ui.rs560// ─── Help Modal Overlay ───────────────────────────────────────────────────────COMMENT
MEDIUMcrates/nu-explore/src/explore_regex/app.rs164 // ─── Quick Reference Panel ───────────────────────────────────────────COMMENT
MEDIUMcrates/nu-explore/src/explore_regex/app.rs313 // ─── is_selectable tests ─────────────────────────────────────────────────COMMENT
MEDIUMcrates/nu-explore/src/explore_regex/app.rs343 // ─── find_next_item tests ────────────────────────────────────────────────COMMENT
MEDIUMcrates/nu-explore/src/explore_regex/app.rs381 // ─── find_prev_item tests ────────────────────────────────────────────────COMMENT
MEDIUMcrates/nu-explore/src/explore_regex/app.rs421 // ─── find_nearest_item tests ─────────────────────────────────────────────COMMENT
MEDIUMcrates/nu-explore/src/explore_regex/app.rs451 // ─── find_nearest_item_reverse tests ─────────────────────────────────────COMMENT
MEDIUMcrates/nu-explore/src/explore_regex/app.rs482 // ─── Navigation method tests (quick_ref_up/down) ─────────────────────────COMMENT
MEDIUMcrates/nu-explore/src/explore_regex/app.rs544 // ─── Page navigation tests ───────────────────────────────────────────────COMMENT
MEDIUMcrates/nu-explore/src/explore_regex/app.rs631 // ─── Horizontal scroll tests ─────────────────────────────────────────────COMMENT
MEDIUMcrates/nu-explore/src/explore_regex/app.rs684 // ─── Unicode handling tests ───────────────────────────────────────────────COMMENT
MEDIUMcrates/nu-explore/src/explore_regex/app.rs695 // ─── get_highlights tests ─────────────────────────────────────────────────COMMENT
MEDIUMcrates/nu-explore/src/explore_regex/app.rs785 // ─── Helper ──────────────────────────────────────────────────────────────COMMENT
MEDIUMcrates/nu-command/tests/format_conversions/html.rs50 "<html><style>body { background-color:white;color:black; }</style><body>Change directory.<br><br>Usage:<br> &gtCODE
MEDIUMcrates/nu-command/tests/commands/table.rs3546 "╭───┬───┬───┬────────────────╮│ # │ a │ b │ c │├───┼───┼───┼────────────────┤│ 0 │ 1 │ 2 │ CODE
MEDIUMcrates/nu-command/tests/commands/table.rs3554 "╭───┬─────┬─────┬────────────────╮│ # │ a │ b │ c │├───┼─────┼─────┼────────────────┤│ 0 │ 1CODE
MEDIUMcrates/nu-command/tests/commands/table.rs3562 "╭───┬─────┬─────┬─────╮│ # │ a │ b │ c │├───┼─────┼─────┼─────┤│ 0 │ 1 │ 2 │ 3 ││ 1 │ ... │ ... │ .CODE
MEDIUMcrates/nu-command/tests/commands/table.rs3642 "╭───┬───┬───┬────────────────╮│ # │ a │ b │ c │├───┼───┼───┼────────────────┤│ 0 │ 1 │ 2 │ CODE
MEDIUMcrates/nu-command/tests/commands/table.rs3650 "╭───┬─────┬─────┬────────────────╮│ # │ a │ b │ c │├───┼─────┼─────┼────────────────┤│ 0 │ 1CODE
MEDIUMcrates/nu-command/tests/commands/table.rs3658 "╭───┬─────┬─────┬─────╮│ # │ a │ b │ c │├───┼─────┼─────┼─────┤│ 0 │ 1 │ 2 │ 3 ││ 1 │ ... │ ... │ .CODE
MEDIUMcrates/nu-command/tests/commands/table.rs3212 "─#───a───b─────────c──────── 0 1 2 3 1 4 5 [list 3 items] ",CODE
MEDIUMcrates/nu-command/tests/commands/table.rs3213 "─#───a───b─────────c──────── 0 1 2 3 1 4 5 [list 3 items] ─#───a───b─────────c───CODE
MEDIUMcrates/nu-command/tests/commands/table.rs3238 "─#─┬─a─┬─b─┬───────c──────── 0 │ 1 │ 2 │ 3 1 │ 4 │ 5 │ [list 3 items] ───┴───┴───┴───────────CODE
MEDIUMcrates/nu-command/tests/commands/table.rs3239 "─#─┬─a─┬─b─┬───────c──────── 0 │ 1 │ 2 │ 3 1 │ 4 │ 5 │ [list 3 items] ─#─┴─a─┴─b─┴───────c───CODE
MEDIUMcrates/nu-command/tests/commands/table.rs3251 "─#─┼─a─┼─b─┼───────c──────── 0 │ 1 │ 2 │ 3 1 │ 4 │ 5 │ [list 3 items] ",CODE
MEDIUMcrates/nu-command/tests/commands/table.rs3252 "─#─┼─a─┼─b─┼───────c──────── 0 │ 1 │ 2 │ 3 1 │ 4 │ 5 │ [list 3 items] ─#─┼─a─┼─b─┼───────c───CODE
MEDIUMcrates/nu-command/tests/commands/table.rs3264 "═#═╦═a═╦═b═╦═══════c════════ 0 ║ 1 ║ 2 ║ 3 1 ║ 4 ║ 5 ║ [list 3 items] ═══╩═══╩═══╩═══════════CODE
MEDIUMcrates/nu-command/tests/commands/table.rs3265 "═#═╦═a═╦═b═╦═══════c════════ 0 ║ 1 ║ 2 ║ 3 1 ║ 4 ║ 5 ║ [list 3 items] ═#═╩═a═╩═b═╩═══════c═══CODE
MEDIUMcrates/nu-command/tests/commands/table.rs3277 "╭─#─┬─a─┬─b─┬───────c────────╮│ 0 │ 1 │ 2 │ 3 ││ 1 │ 4 │ 5 │ [list 3 items] │╰───┴───┴───┴────CODE
MEDIUMcrates/nu-command/tests/commands/table.rs3278 "╭─#─┬─a─┬─b─┬───────c────────╮│ 0 │ 1 │ 2 │ 3 ││ 1 │ 4 │ 5 │ [list 3 items] │╰─#─┴─a─┴─b─┴────CODE
MEDIUMcrates/nu-command/tests/commands/table.rs3290 "┏━#━┳━a━┳━b━┳━━━━━━━c━━━━━━━━┓┃ 0 ┃ 1 ┃ 2 ┃ 3 ┃┃ 1 ┃ 4 ┃ 5 ┃ [list 3 items] ┃┗━━━┻━━━┻━━━┻━━━━CODE
MEDIUMcrates/nu-command/tests/commands/table.rs3291 "┏━#━┳━a━┳━b━┳━━━━━━━c━━━━━━━━┓┃ 0 ┃ 1 ┃ 2 ┃ 3 ┃┃ 1 ┃ 4 ┃ 5 ┃ [list 3 items] ┃┗━#━┻━a━┻━b━┻━━━━CODE
MEDIUMcrates/nu-command/tests/commands/table.rs3303 "┏─#─┬─a─┬─b─┬───────c────────┓│ 0 │ 1 │ 2 │ 3 ││ 1 │ 4 │ 5 │ [list 3 items] │┗───┴───┴───┴────CODE
MEDIUMcrates/nu-command/tests/commands/table.rs3304 "┏─#─┬─a─┬─b─┬───────c────────┓│ 0 │ 1 │ 2 │ 3 ││ 1 │ 4 │ 5 │ [list 3 items] │┗─#─┴─a─┴─b─┴────CODE
MEDIUMcrates/nu-command/tests/commands/table.rs3329 "╭─#─┬─a─┬─b─┬───────c────────╮│ 0 │ 1 │ 2 │ 3 ││ 1 │ 4 │ 5 │ [list 3 items] │╰───┴───┴───┴────CODE
64 more matches not shown…
AI Slop Vocabulary16 hits · 45 pts
SeverityFileLineSnippetContext
MEDIUMcrates/nu-test-support/src/lib.rs6//! It offers a [custom test harness](#custom-test-harness) to control the environment tests run in, along withCOMMENT
MEDIUMcrates/nu-test-support/src/lib.rs46//! harness = false # disable the test harnessCOMMENT
MEDIUMcrates/nu-test-support/src/lib.rs516//! `#[exp]` attribute provided by the custom test harness.COMMENT
MEDIUMcrates/nu-test-support/src/harness/mod.rs71#[linkme(crate = nu_test_support::harness::linkme)]COMMENT
MEDIUMcrates/nu-utils/src/casing.rs17 /// Essentially `to_folded_case(a) == to_folded_case(b)`, but withoutCOMMENT
MEDIUMcrates/nu-utils/src/casing.rs25 /// Essentially `to_folded_case(a) == to_folded_case(b)`, but withoutCOMMENT
MEDIUMcrates/nu-protocol/src/value/mod.rs2195 /// This method is able to leverage that information encoded in a `Value` to provide more accurateCOMMENT
MEDIUMcrates/nu-protocol/src/errors/shell_error/io.rs89/// This allows seamless transfer of `ShellError` instances where `std::io::Error` is expected.COMMENT
MEDIUMcrates/nu-test-support-macros/src/test.rs79 #[::nu_test_support::collect_test(::nu_test_support::harness::TESTS)]COMMENT
MEDIUMcrates/nu-test-support-macros/src/test.rs80 #[linkme(crate = ::nu_test_support::harness::linkme)]COMMENT
MEDIUMcrates/nu-plugin/src/lib.rs11//! the typed data that Nushell commands utilize natively.COMMENT
MEDIUMcrates/nu-command/tests/commands/table.rs1030 "│ bench │ │ # │ name │ harness │ │",CODE
MEDIUMcrates/nu-command/tests/commands/table.rs1222 "│ bench │ │ # │ name │ harness │ CODE
MEDIUMcrates/nu-command/tests/commands/table.rs1487 "│ bench │ │ # │ name │ harness │ │",CODE
MEDIUMcrates/nu-command/src/viewers/table.rs685 // TODO: more robust error classificationCOMMENT
MEDIUMcrates/nu-command/src/viewers/table.rs1274 // TODO: more robust error classificationCOMMENT
Modern AI Meta-Vocabulary4 hits · 12 pts
SeverityFileLineSnippetContext
MEDIUMcrates/nu-config/src/paths.rs35 /// A missing file is an error; do not scaffold.COMMENT
MEDIUMcrates/nu-config/src/config_file.rs4/// its scaffold template.COMMENT
MEDIUMcrates/nu-config/src/config_file.rs24 /// The scaffold content written when the file does not exist on firstCOMMENT
MEDIUMsrc/config_files.rs73 // Default path under config_home — may scaffold on first run.COMMENT
Hallucination Indicators1 hit · 10 pts
SeverityFileLineSnippetContext
CRITICALcrates/nu-table/src/types/expanded.rs512 cfg.opts.config.table.missing_value_symbol.clone(),CODE
Self-Referential Comments2 hits · 6 pts
SeverityFileLineSnippetContext
MEDIUMcrates/nu-term-grid/src/grid.rs33//! ## Creating a gridCOMMENT
MEDIUM.github/workflows/nightly-build.yml212 # Create a release only in nushell/nightly repoCOMMENT
TODO Padding4 hits · 6 pts
SeverityFileLineSnippetContext
LOWcrates/nu-heavy-utils/src/yaml/serialize.rs492 // TODO: implement structure style values hereCOMMENT
LOWcrates/nu-protocol/src/errors/shell_error/mod.rs1717// TODO: implement further chaining than just oneCOMMENT
LOWcrates/nu-protocol/src/errors/shell_error/mod.rs1724 // TODO: implement this less wastefulCOMMENT
LOWcrates/nu-parser/src/parse_shape_specs.rs68 //TODO: Handle error case for unknown shapesCOMMENT
Fake / Example Data2 hits · 2 pts
SeverityFileLineSnippetContext
LOWcrates/nu-utils/src/flatten_json.rs86 /// "name": "John Doe",COMMENT
LOWcrates/nu_plugin_formats/src/from/vcf.rs103 "value" => Value::test_string("foo@bar.com"),CODE
Slop Phrases2 hits · 2 pts
SeverityFileLineSnippetContext
LOWcrates/nu-command/src/filesystem/ls.rs1071 // Don't forget to close the Find handleCOMMENT
LOW.github/workflows/friendly-config-reminder.yml24 If you changed any of the default values or added a new config option, don't forget to update the [`doc_configCODE
Deep Nesting1 hit · 1 pts
SeverityFileLineSnippetContext
LOWcrates/nu_plugin_python/nu_plugin_python_example.py226CODE