blob: 291cac6033add45ccc7d01fb20fcb90bd7756aa1 [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:http/http.dart' as http;
/// Generate issue labeler workflow config data.
main(List<String> args) async {
var client = http.Client();
var req = await client.get(
Uri.parse('https://dart-lang.github.io/linter/lints/machine/rules.json'));
var machine = json.decode(req.body);
var coreLints = <String>[];
var recommendedLints = <String>[];
var flutterLints = <String>[];
for (var entry in machine) {
var sets = entry['sets'] as List;
if (sets.contains('core')) {
coreLints.add(entry['name'] as String);
} else if (sets.contains('recommended')) {
recommendedLints.add(entry['name'] as String);
} else if (sets.contains('flutter')) {
flutterLints.add(entry['name'] as String);
}
}
// todo(pq): consider a local cache of internally available rules.
print('# Auto-generated by `tool/labeler/issue_config.dart`');
print('\nset-core:');
print(" - '(${coreLints.sorted().join('|')})'");
print('\nset-recommended:');
print(" - '(${recommendedLints.sorted().join('|')})'");
print('\nset-flutter:');
print(" - '(${flutterLints.sorted().join('|')})'");
}