import-js/eslint-plugin-import
[no-duplicates] prefer-inline should merge type and non-type imports
Ouverte
#2 675 ouverte le 14 janv. 2023
bughelp wanted
Métriques du dépôt
- Stars
- (5 940 étoiles)
- Métriques de merge PR
- (Métriques PR en attente)
Description
Input:
import { A } from "./mod";
import type { B } from "./mod";
Output:
import { A, type B } from "./mod";