格式化检查

This commit is contained in:
v7lin
2019-03-22 15:15:55 +08:00
parent 57761cde33
commit 64b5a0f69a
4 changed files with 12 additions and 5 deletions

View File

@ -10,6 +10,14 @@ steps:
commands:
- flutter packages get
- name: format
image: v7lin/flutter:1.2.1-stable
volumes:
- name: pub-cache
path: /opt/flutter/.pub-cache
commands:
- flutter format --dry-run --set-exit-if-changed .
- name: analyze
image: v7lin/flutter:1.2.1-stable
volumes:

View File

@ -5,6 +5,4 @@
// gestures. You can also use WidgetTester to find child widgets in the widget
// tree, read text, and verify that the values of widget properties are correct.
void main() {
}
void main() {}

View File

@ -3,7 +3,8 @@ library fake_tencent;
export 'src/domain/tencent_login_resp.dart' hide TencentLoginRespSerializer;
export 'src/domain/tencent_resp.dart';
export 'src/domain/tencent_share_resp.dart' hide TencentShareRespSerializer;
export 'src/domain/tencent_user_info_resp.dart' hide TencentUserInfoRespSerializer;
export 'src/domain/tencent_user_info_resp.dart'
hide TencentUserInfoRespSerializer;
export 'src/tencent.dart';
export 'src/tencent_provider.dart';
export 'src/tencent_qzone_flag.dart';