mirror of https://github.com/flutter/samples.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
755 B
23 lines
755 B
# 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_relative_lib_imports
|
|
- avoid_return_types_on_setters
|
|
- avoid_types_as_parameter_names
|
|
- no_duplicate_case_values
|
|
- prefer_contains
|
|
- prefer_equal_for_default_values
|
|
- prefer_is_not_empty
|
|
- recursive_getters
|
|
- unrelated_type_equality_checks
|
|
- use_rethrow_when_possible
|
|
- unawaited_futures
|
|
- valid_regexps
|