warning:threshold violation:number of warnings exceeded threshold

Viewed 2574

enter image description here

When I am building Xcode 9.2 project, this error is getting. Can anyone help me on this.Thanks!

1 Answers

Shell Script Invocation Error referring the swift-lint errors here, which is due to the exceeding the maximum number of allowed warnings by swiftlint.

Either you have to resolve the warning, or you can increase the number of allowed warnings by swiftlint in swiftlint.yml by:

warning_threshold: 2000

For more reference you can visit visit-medium-blog

Related