如何在更漂亮的环境中配置Airbnb的风格指南?我正在使用VS Code。
提前致谢!

最佳答案

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永远不要使用其他格式规则。

09-25 18:26