We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d11734f commit f0d1fe1Copy full SHA for f0d1fe1
pkg/analysis_server/tool/bulk_fix/supported_lints.dart
@@ -0,0 +1,14 @@
1
+// Copyright (c) 2020, the Dart project authors. Please see the AUTHORS file
2
+// for details. All rights reserved. Use of this source code is governed by a
3
+// BSD-style license that can be found in the LICENSE file.
4
+
5
+import 'package:analysis_server/src/services/correction/bulk_fix_processor.dart';
6
7
+/// Print lints that are bulk-fixable in a format that can be included in
8
+/// analysis options.
9
+void main() {
10
+ print(' # bulk-fixable lints');
11
+ for (var lintName in BulkFixProcessor.lintProducerMap.keys) {
12
+ print(' - $lintName');
13
+ }
14
+}
0 commit comments