2017-08-14 26 views
0

如何在漂亮的地方配置Airbnb风格指南?我正在使用VS代码。 在此先感谢!如何使用Airbnb JavaScript风格指南设置漂亮

+1

欢迎来到StackOverflow。请阅读并遵循发布指南:我可以询问哪些类型的问题https://stackoverflow.com/help/on-topic,以及如何提问:https://stackoverflow.com/help/how-to-ask。请记住还要包含最小,完整,可验证的示例:https://stackoverflow.com/help/mcve。然后,点击编辑编辑您的问题,以便我们提供帮助。 – SherylHohman

回答

1

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,

根据他们的意见,其他格式的规则不应该用更漂亮使用。

+0

非常感谢! –