SwiftLint - 在特定文件中禁用行长度规则

SwiftLint -Disable Line Length Rules in a specific file

当前的 SwiftLint 规则:

file_length:
  warning: 800
  error: 1500

错误

我按照这个 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> 适用于您只想在小代码块(如单个函数)中忽略特定规则的情况。如果您想在文件范围内禁用规则,则无需启用任何内容。

Swiftlint docs