-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
[consistent-type-specifier-style] should support mixed style #2676
Comments
cc @bradzacher |
Currently the entire point of the rule is to enforce that either you always use top-level type imports OR you always use inline imports. If you want to mix-and-match and use both instead you can just use TS itself will fully prevent the one missing case of "single inline specifier", so I don't think an extra lint rule makes sense for that? Also note that both babel and TS treat the single inline specifier case the same at compile time - they simply do not emit an import. |
For Babel, there's a corresponding option to I believe there is a bug in Babel related to |
babel/babel#15348 |
@bradzacher You can try it yourself. // tsconfig.json
{
"compilerOptions": {
"module": "ESNext",
"isolatedModules": true,
"importsNotUsedAsValues": "error"
}
} // index.ts
import { type T } from "./mod"; // mod.ts
export type T = number; Output// index.js
import "./mod"; // mod.js
export {}; |
I'm not sure why you wouldn't want it to remove those statements - while the import one might have side effects, tooling pretty universally assumes that if there's a binding, there's no side effects, and the export line is a noop. |
This decision is made by TypeScript team. I have no control over it.
With |
Honestly - you shouldn't be using import rules ( The TS compiler option is subject to change by the TS team at any time. Trying to design a set of lint rules that work in concert with logic that could change is really difficult - esp when any discrepancies between them can cause build errors or changes in runtime behaviour. IMO use one or the other. |
microsoft/TypeScript#47118 (comment)
FYI there's a new option named Please also take a look into the background sections in the link above. There are multiple real-world use cases for those options. |
I agree with you. That's why I propose to add this feature into @typescript-eslint first. IMO @typescript-eslint should follow the TypeScript compiler's behavior. |
Again, type specifiers are not something that only related to style. It solves many transpile problems like re-export a type, which cannot be done by static-analyzing on a single file ( |
For example: export { A, B } from "./mod"; Which parts of code should be elided? |
It's only about your personal preference. You can't represent so anyone. |
We in @typescript-eslint don't want to try to follow TS behaviour with things like this because it means we have to maintain the branches as it changes over versions. Its a huge amount of work to maintain. We've tried it before with decorator metadata and it's the first and last time we'll be attempting to match TS implementation for something. |
Sorry - you misunderstand me. I don't mean "don't use type specifiers", I mean don't use the TS compiler option. Instead just use the lint rules. The Using rules instead means you can use the default TS/babel behaviour to remove an entire import if it only has inline type specifiers (which is what people expect to happen instead of leaving anonymous imports behind).
|
IMO given the possibility of accidental side effectful type imports while using I'd made a ticket on the TS ESLint plugin to add a rule like this with some motivations listed, but it was closed as not fitting with that rule. Adding it as an option to this rule does seem to make much more sense. With the way TypeScript elides type imports, using inline for type-only imports becomes potentially problematic, but from a code style perspective it's often wanted to keep inline type imports around when there are also value imports in use. Enforcing the mixed style as listed in this issue IMO makes a lot of sense to have as a lint rule. |
This comment was marked as outdated.
This comment was marked as outdated.
Given that for whatever reason the TS team decided that (a choice I strongly disagree with, but I digress) import {type T} from 'Foo'; should transpile to import 'Foo'; under the new flags releasing in TS5.0 - there's probably going to be more of the community that will want this "prefer inline except if there's only type-only-specifiers" style, so it probably makes sense to add a new option. |
oof, what?? That seems very bad. Is there an issue discussing it? Are you saying, then, that in this case the rule should enforce |
I support the usage of
It's necessary to support this issue, after TS 5.0, |
microsoft/TypeScript#51479 is the issue and from the looks of it, it's entirely intentional and will not change. I personally disagree with it, but that's neither here nor there. The behaviour is behind a flag which isn't required for people to use, so it is optional behaviour for people to opt into. So yeah there probably needs to be an option which does the following: // valid
import 'mod';
import * as mod from 'mod';
import type * as mod from 'mod';
import Foo from 'mod';
import type Foo from 'mod';
import {Bar} from 'mod';
import type {Bar} from 'mod';
import Foo, {Bar} from 'mod';
import Foo, {type Bar} from 'mod';
import {Bar, Baz} from 'mod';
import {type Bar, Baz} from 'mod';
// invalid
import {type Bar} from 'mod'; Though TBH I don't actually see this a good option to the rule. It doesn't really enforce anything any more - it simply ensures that you don't use inline type specifiers if they're the only specifier. To me that makes it feel like it should be a new rule entirely because it's no longer about being consistent and using the same style. I think that the correct course of action is as follows:
Note - I'd be happy for the new rule from (1) to live in @typescript-eslint, given that it is solely focused on TS behaviour AND it exists due to the way that a TS compiler flag works. |
I think your plan is correct, and I think the rule should indeed live in ts-eslint. |
Filed typescript-eslint/typescript-eslint#6382 We can close this. |
With
"importsNotUsedAsValues": "error"
intsconfig.json
,import { type T }
is no longer a valid TypeScript code.I hope there could be a code fix:
while still preserve this as-is:
Valid Code
TypeScript Compiler Behavior
"importsNotUsedAsValues": "remove"
"importsNotUsedAsValues": "error"
The text was updated successfully, but these errors were encountered: