-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Closed
Labels
enhancementIdeas for improvements of existing features and rules.Ideas for improvements of existing features and rules.
Description
New Issue Checklist
- I've Updated SwiftLint to the latest version.
- I've searched for existing GitHub issues.
Feature or Enhancement Proposal
Extend xct_specific_matcher rule to cover scenarios for for comparing === in XCAssert to XCTAssertIdentical and XCTAssertNotIdentical for !==.
XCAssertTrue(val1 === val2) -> XCTAssertIdentical(val1, val2)
XCAssert(val1 === val2) -> XCTAssertIdentical(val1, val2)
XCAssertTrue(val1 !== val2) -> XCTAssertNotIdentical(val1, val2)
XCAssert(val1 !== val2) -> XCTAssertNotIdentical(val1, val2)
Describe you idea or proposal here. This can be a new feature, an enhancement to an existing feature, or a change to the
project's behavior. Be sure to include the rationale behind the proposal and any relevant context or examples.
Copilot
Metadata
Metadata
Assignees
Labels
enhancementIdeas for improvements of existing features and rules.Ideas for improvements of existing features and rules.