如何在更漂亮的环境中配置Airbnb的风格指南?我正在使用VS Code。 提前谢谢!
答案 0 :(得分: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一起使用。
答案 1 :(得分:0)
您可以使用eslint-config-prettier扩展Prettier配置。