blob: 2a673fea804be96e8fd54a7c762ef621d51bbf2d [file] [log] [blame]
// 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 'dart:convert';
import 'package:collection/collection.dart';
import 'package:linter/src/utils.dart';
import '../machine.dart';
/// Generate issue labeler workflow config data.
void main(List<String> args) async {
var rulesFile = machineJsonFile();
var req = rulesFile.readAsStringSync();
var machine = json.decode(req) as Iterable<Object?>;
var coreLints = <String>[];
var recommendedLints = <String>[];
var flutterLints = <String>[];
for (var entry in machine) {
if (entry case {'name': String name, 'sets': List<Object?> sets}) {
if (sets.contains('core')) {
coreLints.add(name);
} else if (sets.contains('recommended')) {
recommendedLints.add(name);
} else if (sets.contains('flutter')) {
flutterLints.add(name);
}
}
}
// TODO(pq): consider a local cache of internally available rules.
printToConsole('# Auto-generated by `tool/labeler/issue_config.dart`');
printToConsole('\nset-core:');
printToConsole(" - '(${coreLints.sorted().join('|')})'");
printToConsole('\nset-recommended:');
printToConsole(" - '(${recommendedLints.sorted().join('|')})'");
printToConsole('\nset-flutter:');
printToConsole(" - '(${flutterLints.sorted().join('|')})'");
}