.swiftlint.yml file is excluding:
excluded:
- Pods
- SourcePackages
- fastlane/SnapshotHelper.swift //This one is new!
Locally everything works fine. Our .swiftlint.yml file is in submodule. Checkout is fetching submodules correctly. I've verified commit and it is correct one. Right after checkout we are performing step named Swiftlint and we are constantly getting errors on excluded file fastlane/SnapshotHelper.swift. It seems like despite the fact that submodule fetching is successfull it is still using older (cached?) version of .swiftlint.yml from previous submodule commit.
We are using config like below:
Locally everything works fine. Our
.swiftlint.yml
file is in submodule. Checkout is fetching submodules correctly. I've verified commit and it is correct one. Right after checkout we are performing step namedSwiftlint
and we are constantly getting errors on excluded filefastlane/SnapshotHelper.swift
. It seems like despite the fact that submodule fetching is successfull it is still using older (cached?) version of.swiftlint.yml
from previous submodule commit.Currently we are running out of ideas.