0

Xcode 显示我的一些 Pod 文件的警告,尤其是关于已弃用变量的警告。

我已经有一个 .swiftlint.yml 文件,它与我的 Pods 文件夹位于同一个文件夹中。

这是我的文件的样子:

excluded:
   - Pods
   - Localization
line_length: 200
type_body_length:
   - 300 # warning
   - 400 # error
file_length:
warning: 500
error: 1200
function_body_length:
warning: 50
error: 100

我不明白为什么当我排除它们时它仍然显示这些警告。

4

2 回答 2

0

以下将忽略 Pod 文件。

excluded: 
  - Pods

您只需要确保您的 .swiftlint.yml 文件必须位于项目的根路径上。

于 2019-03-12T13:24:41.820 回答
0

试试看

platform :ios

# ignore all warnings from all pods
inhibit_all_warnings!

# ignore warnings from a specific pod
pod 'SwiftLint', :inhibit_warnings => true
于 2021-08-13T06:37:08.563 回答