2

如何在 Prettier 中配置 Airbnb 的风格指南?我正在使用 VS 代码。提前致谢!

4

2 回答 2

3

eslint-config-prettier 将禁用所有格式化规则。它在自述文件中多次提到eslint-config-airbnb,但他们不保证它 100% 遵循 airbnb 规则。

我想如果你想确保它们一起正常工作,你必须自己检查规则。

更新:

我已经检查了eslint-config-prettier. 以下是可以覆盖的规则列表:

// The following rules can be used in some cases. See the README for more
// information. (These are marked with `0` instead of `"off"` so that a
// script can distinguish them.)

curly: 0,
"max-len": 0,
"no-confusing-arrow": 0,
"no-mixed-operators": 0,
"no-tabs": 0,
quotes: 0,

根据他们的评论,其他格式规则不应该与 Prettier 一起使用。

于 2017-09-06T13:27:08.603 回答
0

您可以使用eslint-config-prettier来扩展 Prettier 配置。

于 2017-08-14T21:32:21.550 回答