Search code examples
dartriverpod

How to fix "A lint plugin threw an exception - dart(custom_lint_get_lint_fail)"?


I have this lint error.

A lint plugin threw an exception - dart(custom_lint_get_lint_fail)

The error occurs at the first line in the following code.

import 'package:amplify_flutter/amplify_flutter.dart';
import 'package:riverpod_annotation/riverpod_annotation.dart';

/// ...

However, If I remove the first line, the same error occurs in the second line (import 'package:riverpod_annotation/riverpod_annotation.dart';).

How can I resolve this problem?


Solution

  • This bug was fixed in the Riverpod 2.3.0 release (riverpod_lint: ^1.0.1)

    See more:

    [lint] A lint plugin threw an exception - dart(custom_lint_get_lint_fail) #2168