gpt4 book ai didi

SwiftLint 无法识别对 .swiftlint.yml 的更改

转载 作者:行者123 更新时间:2023-11-28 08:20:44 30 4
gpt4 key购买 nike

我在 Xcode 的自定义构建阶段使用 SwiftLint:

if which swiftlint >/dev/null; then
swiftlint autocorrect --format
swiftlint
else
echo "warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint"
fi

自从我创建 .swiftlint.yml 以来,Xcode 一定在过去一个月内识别了我的项目文件夹中的 .swiftlint.yml,因为它警告我有关我添加的自定义规则。现在我已经从 yml 文件中删除了两个自定义规则,但 Xcode 一直警告我这些规则。

我尝试了以下操作,但不知道该尝试什么:

  • 卸载并安装 Swiftlint(使用 Homebrew)
  • 将删除的规则名称添加到 disabled_rules在 .swiftlint.yml 中
  • 删除 .swiftlint.yml 并重新添加

我能想到的唯一解决方法是添加一行 // swiftlint:disable <rule1> <rule2> <rule3>每个文件,但这不能被认为是一个真正的解决方案,所以现在我在 Xcode 构建阶段注释掉了 swiftlint。非常感谢任何建议......


编辑:swiftlint.yml 内容

disabled_rules: # rule identifiers to exclude from running
- colon # exaclty one space after the : >>> let abc: Void\n
- todo # TODO can be written in the code but should be linked to a ticket on JIRA.
- nesting # func nesting max 1 level
- weak_delegate
- empty_parentheses_with_trailing_closure
- empty_commented_line
- missing_brackets_unwrap

excluded: # paths to ignore during linting. overridden by `included`.
- Carthage
- Pods
- External
- Submodules

# rule parameters
cyclomatic_complexity:
- 20 #warning
- 35 #error

file_length:
- 600 #warning
- 800 #error

function_body_length:
- 40 #warning
- 80 #error

line_length:
- 300 #warning
- 350 #error

type_body_length:
- 400 #warning
- 500 #error

variable_name:
min_length: 2 #warning
max_length: #warning or error
warning: 40
error: 50

opt_in_rules:
# - missing_docs
- force_unwrapping
- control_statement
- private_outlet
- vertical_whitespace

custom_rules:
extra_whitespace:
name: "Extra whitespaces"
regex: "([a-zA-Z0-9=?.\(\),><!'\"][ ]{2,}[a-zA-Z0-9?.\(\),><!'\"])"
message: "Remove extra whitespaces"
severity: warning
comments_space:
name: "Space After Comment"
regex: "(^ *//\w+)"
message: "There should be a space after //"
severity: warning
empty_first_line:
name: "Empty First Line"
regex: "(^[ a-zA-Z ]*(?:protocol|extension|class|struct) (?!(?:var|let))[ a-zA-Z:]*\{\n *\S+)"
message: "There should be an empty line after a declaration"
severity: warning
empty_line_after_guard:
name: "Empty Line After Guard"
regex: "(^ *guard[ a-zA-Z0-9=?.\(\),><!]*\{[ a-zA-Z0-9=?.\(\),><!]*\}\n *(?!(?:return|guard))\S+)"
message: "There should be an empty line after a guard"
severity: warning
empty_line_after_super:
name: "Empty Line After Super"
regex: "(^ *super\.[ a-zA-Z0-9=?.\(\)\{\}:,><!]*\n *(?!(?:\}|return))\S+)"
message: "There should be an empty line after super"
severity: warning
multiple_empty_lines:
name: "Multiple Empty Lines"
regex: "((?:\s*\n){3,})"
message: "There are too many empty lines"
severity: warning
unnecessary_leading_void_in:
name: "Unnecessary -> Void in at the end of the line"
regex: "(-> (Void|\(\)) in$)"
message: "Unnecessary '-> Void in' at the end of the line. Use only 'in'"
severity: warning
unnecessary_type:
name: "Unnecessary Type"
regex: "(?sm)[ \ta-zA-Z0-9]?(?:let|var){1} [ \ta-zA-Z0-9]+?:[ \t]+?([a-zA-Z0-9]+?)[\t ]+?=[\t ]?\1"
message: "Type Definition Not Needed"
severity: warning
empty_closure_params:
name: "Empty closure params"
regex: "\{ (\(\) -> Void in)$"
message: "`() -> Void in` should be avoided"
severity: warning
invalid_mark_format:
name: "Invalid MARK Format"
regex: "(?m-s)(\/\/[\s]*?MARK(?!(\:[\s]{1}\-[\s]{1}){1}))"
message: "Use format: MARK: - Your Info"
severity: warning

最佳答案

检查您的 .swiftlint.yml 文件路径。应该添加到项目的根目录下。

关于SwiftLint 无法识别对 .swiftlint.yml 的更改,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41378805/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com