Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Coding-Dev-Tools/deadcode
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: Coding-Dev-Tools/deadcode
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: pr-41-branch
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 19 commits
  • 12 files changed
  • 4 contributors

Commits on May 26, 2026

  1. Configuration menu
    Copy the full SHA
    0785e67 View commit details
    Browse the repository at this point in the history

Commits on Jun 10, 2026

  1. Configuration menu
    Copy the full SHA
    4ecfb0a View commit details
    Browse the repository at this point in the history

Commits on Jun 13, 2026

  1. cowork-bot: fix multi-line export list detection + 4 regression tests

    scanner.py: _EXPORT_LIST_PATTERN was applied line-by-line, so multi-line
    export blocks like:
    
        export {
          Foo,
          Bar,
        }
    
    were silently missed — Foo and Bar were never added to the exports map
    and thus never flagged as unused exports (false negatives).
    
    Fix: apply _EXPORT_LIST_PATTERN to the full file content (re.DOTALL added
    for clarity; [^}] already matched newlines). Line number computed via
    content.count('\n', 0, m.start()) + 1 so findings still point to the
    opening 'export {' line. Single-line export { Foo, Bar } behaviour is
    unchanged.
    
    Add TestMultiLineExportList (4 tests) covering: multi-line detection,
    used-name suppression, alias handling, single-line regression.
    cowork-bot committed Jun 13, 2026
    Configuration menu
    Copy the full SHA
    7f02726 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d3317e5 View commit details
    Browse the repository at this point in the history

Commits on Jun 23, 2026

  1. cowork-bot: resolve merge conflict in tests/test_scanner.py (keep bot…

    …h TestMultiLineExportList and master test suites)
    DevForge Engineer committed Jun 23, 2026
    Configuration menu
    Copy the full SHA
    c46eabc View commit details
    Browse the repository at this point in the history
  2. cowork-bot: fix export-list comment masking + repair broken CLI subpr…

    …ocess tests
    
    - Strip // comments from multi-line export lists so exports after commented
      entries are no longer silently missed (_parse_exports in scanner.py).
    - Replace sys.executable subprocess probes in test_cli_edge_cases.py with
      CliRunner so the suite passes regardless of editable-install state.
    - Add regression test for inline comments inside export { } blocks.
    DevForge Engineer committed Jun 23, 2026
    Configuration menu
    Copy the full SHA
    91459da View commit details
    Browse the repository at this point in the history

Commits on Jun 24, 2026

  1. Configuration menu
    Copy the full SHA
    cf1a081 View commit details
    Browse the repository at this point in the history

Commits on Jun 29, 2026

  1. Configuration menu
    Copy the full SHA
    3b6734d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9e7ada1 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5652deb View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    e9c3360 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    15fe386 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    f7b926f View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    e1bcf55 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    4bb8330 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    0df6496 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    247a7f8 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    fdc1c27 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    1cf18ff View commit details
    Browse the repository at this point in the history
Loading