blob: 9d4a515db480258d25369132fcbdb4e9e88d7df1 [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/analysis_rule/rule_state.dart';
import 'package:analyzer/error/error.dart';
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;
}