sindresorhus/eslint-plugin-unicorn

Auto-fix for `import-style`?

クローズ

#963 opened on 2020/12/25

 (2 件のコメント) (3 件のリアクション) (0 人の担当者)JavaScript (468 件のフォーク)user submission
enhancementhelp wanted

Repository metrics

Stars
 (5,022 個のスター)
PR merge metrics
 (平均マージ 4h 30m) (30d で 26 merged PRs)

説明

import {dirname} from 'path';

const foo = dirname(bar)

->

import path from 'path';

const foo = path.dirname(bar)

I think it's doable.

コントリビューターガイド