Skip to content

Commit

Permalink
Add rule to infer property types from the right-hand-side value rathe…
Browse files Browse the repository at this point in the history
…r than writing the type explicitly on the left-hand side
  • Loading branch information
calda committed Mar 13, 2024
1 parent 0f14982 commit f0bbb0b
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 13 deletions.
71 changes: 59 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -333,25 +333,72 @@ _You can enable the following settings in Xcode by running [this script](resourc

```swift
// WRONG
let host: Host = Host()
let sun: Star = Star(mass: 1.989e30)
let earth: Planet = Planet.earth

// RIGHT
let host = Host()
let sun = Star(mass: 1.989e30)
let earth = Planet.earth

// WRONG: Most literals provide a default type that can be inferred.
let enableGravity: Bool = true
let numberOfPlanets: Int = 8
let sunMass: Double = 1.989e30

// RIGHT
let enableGravity = true
let numberOfPlanets = 8
let sunMass = 1.989e30

// WRONG: Types can be inferred from if/switch expressions as well if each branch has the same explicit type.
let smallestPlanet: Planet =
if treatPlutoAsPlanet {
Planet.pluto
} else {
Planet.mercury
}

// RIGHT
let smallestPlanet =
if treatPlutoAsPlanet {
Planet.pluto
} else {
Planet.mercury
}
```

</details>

* <a id='infer-property-types'></a>(<a href='#infer-property-types'>link</a>) **Prefer letting the type of a property be inferred from the right-hand-side value rather than writing the type explicitly on the left-hand side.** [![SwiftFormat: preferInferredTypes](https://img.shields.io/badge/SwiftFormat-preferInferredTypes-7B0051.svg)](https://github.com/nicklockwood/SwiftFormat/blob/master/Rules.md#preferInferredTypes)

<details>

```swift
enum Direction {
case left
case right
}
// WRONG
let sun: Star = .init(mass: 1.989e30)
let earth: Planet = .earth

func someDirection() -> Direction {
// WRONG
return Direction.left
// RIGHT
let sun = Star(mass: 1.989e30)
let earth = Planet.earth

// RIGHT
return .left
}
// ALSO RIGHT: Explicit types are required when there is no right-hand-side value.
let sun: Star
let earth: Planet

// ALSO RIGHT: Explicit types can be necessary when the right-hand side has
// a different type from the one written explicitly on the left-hand side.
let nautralSatellite: PlanetaryBody? = Moon(mass: 7.347e22)
let moon: PlanetaryBody? = nil // nil literals are typeless
let numberOfPlanets: UInt = 8 // integer literals default to `Int`
let sunMass: CGFloat = 1.989e30 // floating-point literals default to `Double`
let planets: [Planet] = [] // empty collection literals are typeless

// ALSO RIGHT: Some of the examples above can also be written idiomatically without an explicit type on
// the left-hand-side, by instead giving the right-hand side value an explicit type. Either style is fine.
let numberOfPlanets = UInt(8)
let sunMass = CGFloat(1.989e30)
let planets = [Planet]()
```

</details>
Expand Down
3 changes: 2 additions & 1 deletion Sources/AirbnbSwiftFormatTool/airbnb.swiftformat
Original file line number Diff line number Diff line change
Expand Up @@ -100,4 +100,5 @@
--rules wrapMultilineConditionalAssignment
--rules blankLineAfterMultilineSwitchCase
--rules consistentSwitchStatementSpacing
--rules semicolons
--rules semicolons
--rules preferInferredTypes

0 comments on commit f0bbb0b

Please sign in to comment.