跳到主要內容

sort_pub_dependencies

穩定

依字母順序排序 pub 依賴性。

詳細資訊

#

務必pubspec.yaml 中依字母順序 (A 到 Z) 排序 pub 依賴性。

排序 pub 依賴性列表使維護更容易。

啟用

#

若要啟用 sort_pub_dependencies 規則,請在您的 analysis_options.yaml 檔案中的 linter > rules 下新增 sort_pub_dependencies

analysis_options.yaml
yaml
linter:
  rules:
    - sort_pub_dependencies

如果您改為使用 YAML 對應語法來設定 linter 規則,請在 linter > rules 下新增 sort_pub_dependencies: true

analysis_options.yaml
yaml
linter:
  rules:
    sort_pub_dependencies: true