diff --git a/.agents/skills/dart_skills_lint_ignore.json b/.agents/skills/skills_lint_ignore.json similarity index 100% rename from .agents/skills/dart_skills_lint_ignore.json rename to .agents/skills/skills_lint_ignore.json diff --git a/tool/pubspec.yaml b/tool/pubspec.yaml index 98aed9d5469..ced0f22226d 100644 --- a/tool/pubspec.yaml +++ b/tool/pubspec.yaml @@ -24,10 +24,10 @@ dependencies: dev_dependencies: # TODO(https://github.com/flutter/devtools/issues/9771): Update to published version - dart_skills_lint: - git: - url: https://github.com/flutter/skills - path: tool/dart_skills_lint - ref: 05e5a45fa412ddbdd1d694eee0c71f4bbaea2617 logging: ^1.1.1 + skills_lint: + git: + url: https://github.com/google/skills_lint.dart.git + path: packages/skills_lint + ref: main test: ^1.25.8 diff --git a/tool/dart_skills_lint.yaml b/tool/skills_lint.yaml similarity index 95% rename from tool/dart_skills_lint.yaml rename to tool/skills_lint.yaml index 150e3900d15..14fbb78e053 100644 --- a/tool/dart_skills_lint.yaml +++ b/tool/skills_lint.yaml @@ -1,7 +1,7 @@ # Copyright 2026 The Flutter Authors # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd. -dart_skills_lint: +skills_lint: rules: check-relative-paths: error check-absolute-paths: error diff --git a/tool/test/validate_skills_test.dart b/tool/test/validate_skills_test.dart index 04736e7c4b2..6adbabe61c4 100644 --- a/tool/test/validate_skills_test.dart +++ b/tool/test/validate_skills_test.dart @@ -3,11 +3,12 @@ // found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd. import 'dart:async'; -import 'package:dart_skills_lint/dart_skills_lint.dart'; + import 'package:logging/logging.dart'; +import 'package:skills_lint/skills_lint.dart'; import 'package:test/test.dart'; -const String _configFilePath = 'dart_skills_lint.yaml'; +const String _configFilePath = 'skills_lint.yaml'; void main() { test('Validate DevTools Skills', () async {