This repository was archived by the owner on Nov 20, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +17
-1
lines changed Expand file tree Collapse file tree 1 file changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -27,9 +27,25 @@ linter:
27
27
28
28
# The following lints will NOT be enforced for google internal code.
29
29
#
30
+ # always_put_control_body_on_new_line
31
+ # Violates Effective Dart "DO format your code using dartfmt". See note
32
+ # about Flutter SDK style below.
30
33
# avoid_relative_lib_imports
31
- # This is enforced as part of the build rather than as a lint. Since it's
34
+ # Enforced as part of the build rather than as a lint. Since it's
32
35
# effectively enabled it appears in the above list, too.
36
+ # always_specify_types
37
+ # Violates Effective Dart "AVOID type annotating initialized local
38
+ # variables" and others. See note about Flutter SDK style below.
39
+ # avoid_as
40
+ # Does not reflect standard usage. See note about Flutter SDK style below.
33
41
# empty_statements
34
42
# Enforcing use of dartfmt is sufficient to make empty statements obvious.
35
43
# Also, see issue #383 for discussion of false positives.
44
+ # prefer_bool_in_asserts
45
+ # Obsolete in Dart 2; bool is required in asserts.
46
+ # prefer_final_locals
47
+ # Does not reflect standard usage.
48
+ #
49
+ # Note on Flutter SDK Style: some lints were created specifically to support
50
+ # Flutter SDK development. Flutter app developers should instead use standard
51
+ # Dart style as described in Effective Dart, and should not use these lints.
You can’t perform that action at this time.
0 commit comments