blob: 7d6fbb3665a6d43d2da659dc3666e9f790b29913 [file] [log] [blame]
// Copyright (c) 2020, 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:analysis_server/src/services/correction/bulk_fix_processor.dart';
/// Print lints that are bulk-fixable in a format that can be included in
/// analysis options.
void main() {
print(' # bulk-fixable lints');
for (var lintName in BulkFixProcessor.lintProducerMap.keys) {
print(' - $lintName');
}
}