Open mrpeabody opened 2 years ago
I ran into this myself when trying to get ALE working with a Typescript project. It looks like this was removed in 12.0 during the rewrite to use standard-engine. What's not clear to me is if this is a compatibility problem with standard-engine or if this was just an oversight during that migration. Downgrading to ts-standard@11 flagged incompatibilities with the latest Typescript version. 😞 I just changed ALE back to using ESLint… it's not as nice as just using ts-standard, but at least it works without errors.
What version of this package are you using?
The most recent 12.0.1
What operating system, Node.js, and npm version? Ubuntu 22.04 LTS, Node v14.19.3, NPM 6.14.17 What happened?
ts-standard does not support reading files from stdin. Previous workaround was to specify the --stdin-filename option which is not available anymore.
Easy to repro: have a type import in a .ts file (import type { ... ] from '...') and then check the file from stdin:
ts-standard --stdin < <filename>.ts
Output:
Regular check works fine:
ts-standard <filename>.ts
What did you expect to happen?
I'd expect it to work (that is, either fix --stdin or return --stdin-filename option back)
Are you willing to submit a pull request to fix this bug?