Reports usages of ? where they can be omitted, for example, if the inferred type of assigned expression is not nullable.

Suggests removing redundant ? in type declarations.

예:


  let x: Int? = 42

빠른 수정을 적용한 후:


  let x: Int = 42