Kirk Waiblinger
Kirk Waiblinger
The other example that comes to mind is ```ts // fileA.ts import { something } from 'fileB.ts'; console.log('side effect that needs to happen first'); // fileB.ts import { somethingElse }...
To be clear, I'm proposing changing ```typescript `use${'less'}template${'expressions'}` ^^^^^^ ^^^^^^^^^^^^^ // to this `use${'less'}template${'expressions'}` ^^^^^^^^^ ^^^^^^^^^^^^^^^^ // NOT this `use${'less'}template${'expressions'}` ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ``` But yeah, as long as we're talking about...
Ezpz 😊 the report API can take arbitrary loc, which we have in hand anyway for the autofixes
> My one concern would be this case: > > ```ts > `use${ > 'less' > }template${ > 'expressions' > }` > ``` > > Which is fairly common in...
My 2c ACK that it's a weird rule to be in typescript-eslint. Seems like in its present implementation it really could/should just be in eslint core. I'm always very sympathetic...
FYI @developer-bandi - This will have a semantic merge conflict with https://github.com/typescript-eslint/typescript-eslint/pull/8821, which has now been merged. When this is ready to go, you'll want to duplicate the fix to...
yaml with folded multiline string and "--prose-wrap always" improperly wraps (and is not idempotent)
@dralshehri agreed, that's what I did as well. Especially after noting the number of related open bugs to do with prose wrap in yaml.
yaml with folded multiline string and "--prose-wrap always" improperly wraps (and is not idempotent)
I guess I should mention part of the impetus for addressing this pedantically strictly is that, contrary to my example, things that are not simply text routinely get put in...
> Marking as blocked on someone filing an issue on TypeScript. Posed a question in the TS discord to start 👍 (see https://discord.com/channels/508357248330760243/640177429775777792/1247058925401149482)
@sandersn Many, many thanks for the excellent explanation and also the helpful reference to the typescript wiki! 🙏 This info also helps us simplify the repro considerably: ```ts const freshMarker...