使格式更漂亮,如 eslint

时间:2021-06-15 13:25:24

标签: javascript node.js eslint prettier

我看到很多与我的问题相关的问题,但根据我的发现,人们希望 eslint 忽略 prettier 的规则。
就我而言,我希望比 eslint 更漂亮具有相同的行为。

我想要这种格式

const bar = foo.fn()
.then(() => ...)
.then(() => ...)
.catch(() => ...);

在.eslintrc中

"rules" : [ "indent": ["error", 2, { "MemberExpression": 0, "SwitchCase": 1 }] ]

但更漂亮地格式化我的代码

const bar = foo.fn()
  .then(() => ...)
  .then(() => ...)
  .catch(() => ...);

是否可以像 eslint 那样使格式更漂亮?

1 个答案:

答案 0 :(得分:0)

prettiereslint --fix 有不同的配置选项,prettier 大多是自以为是,所以很难将它们配置为做同样的事情,但是可以在 prettier 之后自动运行 eslint --fixthis tool