RuleKind

public enum RuleKind : String, Codable, Sendable

All the possible rule kinds (categories).

  • Describes rules that validate Swift source conventions.

    Declaration

    Swift

    case lint
  • Describes rules that validate common practices in the Swift community.

    Declaration

    Swift

    case idiomatic
  • Describes rules that validate stylistic choices.

    Declaration

    Swift

    case style
  • Describes rules that validate magnitudes or measurements of Swift source.

    Declaration

    Swift

    case metrics
  • Describes rules that validate that code patterns with poor performance are avoided.

    Declaration

    Swift

    case performance