Victorien Elvinger
Victorien Elvinger
Some links are dead.
This could be nice to add some rules of [denolint](https://lint.deno.land/?q=&all=on). In particular, [explicit-module-boundary-types](https://lint.deno.land/?q=boundary&all=on#explicit-module-boundary-types). This is certainly a rule that will be enforced by TypeScript in [declaration isolation mode](https://github.com/microsoft/TypeScript/issues/47947). This is...
IMO this should be a linting rule with auto fix. I never heard about import ordering at formatter level…
@magurotuna made a relevant point. @cvng do you agree? Can we close this issue?
Loose equality is often discouraged except for null/undefined checks. It seems fine to implement loose equality for these cases. It is pretty straightforward since null/undefined are only loosely equal to...
I like your idea! What is preventing to do both? i.e. combining your approach with the current one. Taking the following oinput: ```js // entry.js import { Functions } from...
TypeScript 5.0 beta supports imports of files with `.ts` extension in `bundler` mode. I could refine the proposal of [bakkot](https://github.com/bakkot) as follows: Change the extension of `.ts` to `.js` for...
`--apply-unsafe` could imply `--apply-safe`?
I could also suggest turning off `allowUnreachableCode`. It greatly help in some circumstance.
I pretty like the idea of @andersk about restricted mode. I could add two things: - It could be nice to support the GitLab syntax ``$`a_1`$`` (just making the last...