簡體   English   中英

如何使用 Airbnb JavaScript 風格指南設置 Prettier

[英]How do I set up Prettier with Airbnb JavaScript Style Guide

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

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 一起使用。

您可以使用eslint-config-prettier來擴展Prettier配置。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM