getLintRules method

  1. @override
List<LintRule> getLintRules(
  1. CustomLintConfigs configs
)

Returns a list of warning/infos/errors for a Dart file.

Implementation

@override
List<LintRule> getLintRules(CustomLintConfigs configs) => [
      const MissingFieldInEquatableProps(),
      const AlwaysCallSuperPropsWhenOverridingEquatableProps(),
    ];