blob: d0ece316e164f12fa32a7b740f0d4518f3ebd263 [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.removedLint;
}