Xcode shows Warnings for some of my Pod Files, especially warnings about deprecated variables.
I already have a .swiftlint.yml file and it is in the same folder as my Pods folder.
This is what my file looks like:
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
I don't understand why it still shows these warnings when I exclude them.