OLD | NEW |
1 analyzer: | 1 analyzer: |
2 strong-mode: true | 2 strong-mode: true |
3 language: | 3 language: |
4 enableSuperMixins: true | 4 enableSuperMixins: true |
| 5 errors: |
| 6 # Omits warnigns due to missing `@virtual` |
| 7 # TODO(sigmund): enable once #28601 is fixed |
| 8 strong_mode_invalid_field_override: ignore |
| 9 |
| 10 # Omits warnings for implicit casts with generics like `List<T> x = list;`, |
| 11 # also removes warnings due to a bad interaction between inference of |
| 12 # guarded type arguments and downward cast warnings (see #28646). |
| 13 strong_mode_down_cast_composite: ignore |
| 14 |
| 15 # Allow having TODOs in the code |
| 16 todo: ignore |
| 17 |
| 18 # Allow deprecated calls (althout it would be nice to have a distinction |
| 19 # between internal and external deprecated calls). |
| 20 deprecated_member_use: ignore |
OLD | NEW |