Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Escape $ in file paths #331

Merged
merged 1 commit into from
Nov 10, 2023
Merged

Escape $ in file paths #331

merged 1 commit into from
Nov 10, 2023

Commits on Nov 10, 2023

  1. Escape $ in file paths

    The `$` character in file paths gets treated as a variable by Sublime Text. And as a result, ESLint fails to lint TS files that are "not included" because the path doesn't match any that tsconfig has included.
    
    For example, `/some/long/file.$path.ts` becomes `/some/long/file..ts`
    
    With this change, the `$` is escaped and therefore the full path stays in tact.
    amsul authored and kaste committed Nov 10, 2023
    Configuration menu
    Copy the full SHA
    7a357c5 View commit details
    Browse the repository at this point in the history