Linting将变量导入或解构为单独的行

时间:2018-01-24 17:25:32

标签: javascript reactjs eslint

我们正在寻求实施一个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 /任何其他方法吗?

0 个答案:

没有答案