Zev Eisenberg

Results 152 issues of Zev Eisenberg

At minimum, it should run on CI and fail the build. It would also be nice to add a script that you run when you clone the repo, that sets...

chore

We should swap the left and right side of ternaries. Before: ```swift let foo = someBool ? first : second ``` After: ```swift let foo = someBool ? second :...

mutation operators

https://github.com/github/renaming Also need to update the default branch on Bitrise

chore

Before: ```swift switch myEnum { case .a: doFunctionA() case .b: doFunctionB() } ``` After: ```swift switch myEnum { case .a: doFunctionB() case .b: doFunctionA() } ``` Makes the most sense...

mutation operators

Muter should run tests in parallel to make the overall test run faster. Maybe we only do this if the testing scheme we are using has the "parallelize tests" option...

chore
performance

Some ideas for ranges: - swap `...` and `..

mutation operators

Code like this: ```swift foo = true // before foo = false // after ``` Here’s a case where this could be better than just deleting lines with only side...

mutation operators

Feel free to update the title if there’s a better way to word this. Screenshot: Code: ```swift textViewsAndEncodings.map { $0.key }.forEach { $0.enabledTextCheckingTypes = 0 $0.isAutomaticQuoteSubstitutionEnabled = false $0.isAutomaticLinkDetectionEnabled =...

mutation operators
dependability

# Question Is it possible to find out when the screen for a particular `ScreenID` is permanently dismissed? By "permanently" I mean that if the same screen is presented again,...

Resolves warnings in example project that were introduced when TCA was updated to [0.26.0](https://github.com/pointfreeco/swift-composable-architecture/releases/tag/0.26.0) or higher.