You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
ts-standard: Standard for TypeScript! (https://github.com/standard/ts-standard)
<text>:18:13: Parsing error: Unexpected token { (null)
Regular check works fine: ts-standard <filename>.ts
ts-standard: Standard for TypeScript! (https://github.com/standard/ts-standard)
ts-standard: Run `ts-standard --fix` to automatically fix some problems.
<path>.ts:116:20: A space is required after '{'. (@typescript-eslint/object-curly-spacing)
<path>.ts:116:43: A space is required before '}'. (@typescript-eslint/object-curly-spacing)
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?
The text was updated successfully, but these errors were encountered:
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?
The text was updated successfully, but these errors were encountered: