I have added swiftLint to my Project and also added .swiftlint.yml file with all rules but some of rule of file not working in my project like excluded and line length. i want to exclude pod from Linting so i have added following code in .swiftlint.yml file
excluded: # paths to ignore during linting. Takes precedence over
included.
- Carthage
- Pods
in my .yml file but pods is still not ignore.
Anyone have any idea where i done mistake.
Thanks in Advance