blob: ef1bd302d0a62042f5d0541bfe38b8169bcf98bd [file] [log] [blame]
// Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'package:analyzer/error/error.dart';
import 'package:analyzer/src/lint/linter.dart'; // ignore: implementation_imports
import '../analyzer.dart';
const _desc = r'Prefer using a boolean as the assert condition.';
class PreferBoolInAsserts extends LintRule {
PreferBoolInAsserts()
: super(
name: LintNames.prefer_bool_in_asserts,
description: _desc,
state: RuleState.removed(since: dart3),
);
@override
DiagnosticCode get diagnosticCode => LinterLintCode.removed_lint;
}