Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions tool/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion tool/dart_skills_lint.yaml → tool/skills_lint.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
5 changes: 3 additions & 2 deletions tool/test/validate_skills_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
Loading