Skip to content

Commit

Permalink
pick 942d26c
Browse files Browse the repository at this point in the history
  • Loading branch information
noborder committed Mar 2, 2020
1 parent c1152ec commit 083c6bb
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 2 deletions.
37 changes: 37 additions & 0 deletions analysis_options.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Copyright (c) 2019, 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.
#
# Google internally enforced rules. See README.md for more information,
# including a list of lints that are intentionally _not_ enforced.

linter:
rules:
- avoid_empty_else
- avoid_init_to_null
- avoid_relative_lib_imports
- avoid_return_types_on_setters
- avoid_shadowing_type_parameters
- avoid_types_as_parameter_names
- curly_braces_in_flow_control_structures
- empty_catches
- empty_constructor_bodies
- library_names
- library_prefixes
- no_duplicate_case_values
- null_closures
- prefer_contains
- prefer_equal_for_default_values
- prefer_is_empty
- prefer_is_not_empty
- prefer_iterable_whereType
- recursive_getters
- slash_for_doc_comments
- type_init_formals
- unawaited_futures
- unnecessary_const
- unnecessary_new
- unnecessary_null_in_if_null_operators
- unrelated_type_equality_checks
- use_rethrow_when_possible
- valid_regexps
2 changes: 1 addition & 1 deletion example_swift/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: flutter_boost_example
name: example_swift
description: Demonstrates how to use the flutter_boost plugin.

# The following defines the version and build number for your application.
Expand Down
7 changes: 6 additions & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flutter_boost
description: A next-generation Flutter-Native hybrid solution. FlutterBoost is a Flutter plugin which enables hybrid integration of Flutter for your existing native apps with minimum efforts.
version: 0.1.66
version: 1.9.1+1
author: Alibaba Xianyu
homepage: https://github.com/alibaba/flutter_boost

Expand All @@ -11,6 +11,11 @@ dependencies:
flutter:
sdk: flutter

dev_dependencies:
pedantic: ^1.8.0
flutter_test:
sdk: flutter
mockito: 4.1.1

# For information on the generic Dart part of this file, see the
# following page: https://www.dartlang.org/tools/pub/pubspec
Expand Down

0 comments on commit 083c6bb

Please sign in to comment.