| 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 exclude: | 5 exclude: |
| 6 # TODO(devoncarew): Without this exclude I see ~400 analysis errors. | 6 # TODO(devoncarew): Without this exclude I see ~400 analysis errors. |
| 7 - test/fasta/** | 7 - test/fasta/** |
| 8 errors: | 8 errors: |
| 9 # Omits warnings due to missing `@virtual` | 9 # Omits warnings due to missing `@virtual` |
| 10 # TODO(sigmund): enable once #28601 is fixed | 10 # TODO(sigmund): enable once #28601 is fixed |
| 11 strong_mode_invalid_field_override: ignore | 11 strong_mode_invalid_field_override: ignore |
| 12 | 12 |
| 13 # Omits warnings for implicit casts with generics like `List<T> x = list;`, | 13 # Omits warnings for implicit casts with generics like `List<T> x = list;`, |
| 14 # also removes warnings due to a bad interaction between inference of | 14 # also removes warnings due to a bad interaction between inference of |
| 15 # guarded type arguments and downward cast warnings (see #28646). | 15 # guarded type arguments and downward cast warnings (see #28646). |
| 16 strong_mode_down_cast_composite: ignore | 16 strong_mode_down_cast_composite: ignore |
| 17 | 17 |
| 18 # Allow having TODOs in the code | 18 # Allow having TODOs in the code |
| 19 todo: ignore | 19 todo: ignore |
| 20 | 20 |
| 21 # Allow deprecated calls (although it would be nice to have a distinction | 21 # Allow deprecated calls (although it would be nice to have a distinction |
| 22 # between internal and external deprecated calls). | 22 # between internal and external deprecated calls). |
| 23 deprecated_member_use: ignore | 23 deprecated_member_use: ignore |
| 24 exclude: |
| 25 - test/fasta/** |
| OLD | NEW |