我们正在寻求实施一个linting规则,它将捕获任何导入或结构化变量,使它们显示在不同的行上。
e.g。
// bad (ok, so not so much bad as not what we want)
import { Component1, Component2, Component3 } from 'some-library';
const { variable1, variable2, variable3 } = structuredVariable;
// good (or preferred format)
import {
Component1,
Component2,
Component3,
} from 'some-library';
const {
variable1,
variable2,
variable3,
} = structuredVariable;
这可以通过es-lint /任何其他方法吗?