文件中所有声明的字母顺序

时间:2019-08-17 04:38:15

标签: typescript refactoring eslint lint

我正在寻找某种形式的皮棉/样式检查/修复程序,以查看给定文件的功能是否在文件中以给定的任意顺序排列。

理想情况是这样的:

const b = 'a'
const a = 'a'

它将格式化为

const a = 'a'
const b = 'a'

在文件中存在依赖关系的情况下,该功能将放在列表的前面

给出:

const bear = 'a'
const dolphin = 'a'
const apple = `a $dolphin`
const dolphin = 'a'
const apple = `a $dolphin`
const bear = 'a'

函数将重新排序,而dolphin将位于apple之上。

0 个答案:

没有答案