gpt4 book ai didi

ios - SwiftLint - 禁用特定文件中的行长规则

转载 作者:行者123 更新时间:2023-12-04 16:27:21 30 4
gpt4 key购买 nike

当前 SwiftLint 规则:

file_length:
warning: 800
error: 1500

错误

enter image description here

我关注了这个 answer但错误并没有消失
// swiftlint:disable force_cast

import UIKit

class MyClass: UIViewController {

}

// swiftlint:enable force_cast

如何忽略某些文件中的 SwiftLint 规则?

最佳答案

规则名称是 file_length ,因此您必须禁用此规则:

// swiftlint:disable file_length

import UIKit

class MyClass: UIViewController {

}

注: // swiftlint:enable <rule>适用于您只想忽略小代码块(如单个 func)中的特定规则的情况。如果您想在文件范围内禁用规则,则无需启用任何内容。

Swiftlint docs .

关于ios - SwiftLint - 禁用特定文件中的行长规则,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60818273/

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