Skip to content

Commit

Permalink
Merge pull request flutter#2467 from devoncarew/update_embedder
Browse files Browse the repository at this point in the history
update the embedder file
  • Loading branch information
devoncarew committed Mar 7, 2016
2 parents 58adea7 + fbfeae1 commit 90fb01c
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions sky/packages/sky_engine/lib/_embedder.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,30 @@ embedded_libs:
"dart:ui": "../sdk_ext/dart_ui.dart"
"dart:_internal": "../dart_sdk/_empty.dart"
"dart:nativewrappers": "../dart_sdk/_empty.dart"

analyzer:
language:
enableSuperMixins: true
errors:
# We allow overriding fields (if they use super, ideally...).
strong_mode_invalid_field_override: ignore
# We allow type narrowing.
strong_mode_invalid_method_override: ignore
todo: ignore

linter:
rules:
- camel_case_types
# Sometimes we have no choice (e.g. when matching other platforms).
# - constant_identifier_names
- empty_constructor_bodies
# Disabled until regexp fix is pulled in (https://github.com/flutter/flutter/pull/1996).
# - library_names
- library_prefixes
- non_constant_identifier_names
# Too many false-positives; code review should catch real instances.
# - one_member_abstracts
- slash_for_doc_comments
- super_goes_last
- type_init_formals
- unnecessary_brace_in_string_interp

0 comments on commit 90fb01c

Please sign in to comment.