mirror of
https://github.com/flutter/samples.git
synced 2026-05-13 10:27:09 +00:00
[linting_tool] Add lint rules list (#856)
This commit is contained in:
committed by
GitHub
parent
3b65403631
commit
6bac1b9694
12
experimental/linting_tool/lib/repository/repository.dart
Normal file
12
experimental/linting_tool/lib/repository/repository.dart
Normal file
@@ -0,0 +1,12 @@
|
||||
// Copyright 2021 The Flutter team. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style license that can be
|
||||
// found in the LICENSE file.
|
||||
|
||||
import 'package:linting_tool/model/rule.dart';
|
||||
import 'package:linting_tool/repository/api_provider.dart';
|
||||
|
||||
class Repository {
|
||||
final _apiProvider = APIProvider();
|
||||
|
||||
Future<List<Rule>> getRulesList() => _apiProvider.getRulesList();
|
||||
}
|
||||
Reference in New Issue
Block a user