blob: a30e4119c3e622e70d8db2ca093e5efcba615fa1 [file] [log] [blame] [edit]
// Copyright (c) 2022, 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/analysis_rule.dart';
import 'package:analyzer/analysis_rule/rule_state.dart';
import '../analyzer.dart';
const _desc = r'Do use sound null safety.';
final enableNullSafety = RemovedAnalysisRule(
name: LintNames.enable_null_safety,
description: _desc,
since: dart3,
);