sindresorhus/eslint-plugin-unicorn

Auto-fix for `import-style`?

已关闭

#963 创建于 2020年12月25日

 (2 条评论) (3 个反应) (0 位负责人)JavaScript (468 个派生)user submission
enhancementhelp wanted

仓库指标

星标
 (5,022 个星标)
PR 合并指标
 (平均合并 4小时 30分钟) (30 天内合并 26 个 PR)

描述

import {dirname} from 'path';

const foo = dirname(bar)

->

import path from 'path';

const foo = path.dirname(bar)

I think it's doable.

贡献者指南