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: hsghori/SublimeLinter-contrib-cspell
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: SublimeLinter/SublimeLinter-cspell
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 8 commits
  • 3 files changed
  • 1 contributor

Commits on Sep 3, 2024

  1. Fix regex for Windows' absolute paths

    Same: #1
    kaste committed Sep 3, 2024
    Configuration menu
    Copy the full SHA
    f78ccd5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d3a6194 View commit details
    Browse the repository at this point in the history
  3. Lift to python 3.8

    kaste committed Sep 3, 2024
    Configuration menu
    Copy the full SHA
    29bd325 View commit details
    Browse the repository at this point in the history

Commits on Apr 24, 2025

  1. Fixup README

    kaste committed Apr 24, 2025
    Configuration menu
    Copy the full SHA
    b94c1b8 View commit details
    Browse the repository at this point in the history

Commits on Jun 20, 2025

  1. Let it run on stdin mode

    kaste committed Jun 20, 2025
    Configuration menu
    Copy the full SHA
    b4ede2f View commit details
    Browse the repository at this point in the history
  2. Fix "stdin:$file" actually lints the file on disk

    Interesting bug on cspell's side. Using just the prefix "stdin:" silently strips that and runs on the file on disk.
    kaste committed Jun 20, 2025
    Configuration menu
    Copy the full SHA
    4076ab1 View commit details
    Browse the repository at this point in the history
  3. Workaround cspell bug when cwd contains spaces

    ... or probably any chars that gets percent encoded when transformed to a URI. cspell translates the given path to a URI but the reporter has a bug where it compares the normal working dir with the percent encoded one. These two never match obviously and then cspell prints the complete percent encoded URI as the filename. We thus (a) teach the regex about these stdin filenames, (b) teach `is_stdin_filename` to always return `True` because the filename the reporter reports is not a filename that can found on the filesystem but an URI. If we return true, SublimeLinter core assumes the current view
    kaste committed Jun 20, 2025
    Configuration menu
    Copy the full SHA
    a73e64e View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    57f59e3 View commit details
    Browse the repository at this point in the history
Loading