2017-08-14 71 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

非常感謝! –