| OLD | NEW |
| 1 # Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file |
| 2 # for details. All rights reserved. Use of this source code is governed by a | 2 # for details. All rights reserved. Use of this source code is governed by a |
| 3 # BSD-style license that can be found in the LICENSE file. | 3 # BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 analyzer: | 5 analyzer: |
| 6 strong-mode: true | 6 strong-mode: true |
| 7 language: | 7 language: |
| 8 enableSuperMixins: true | 8 enableSuperMixins: true |
| 9 exclude: | 9 exclude: |
| 10 # TODO(devoncarew): Without this exclude I see ~400 analysis errors. | 10 - testcases/** |
| 11 - test/fasta/** | |
| 12 errors: | 11 errors: |
| 13 # Omits warnings due to missing `@virtual` | 12 # Omits warnings due to missing `@virtual` |
| 14 # TODO(sigmund): enable once #28601 is fixed | 13 # TODO(sigmund): enable once #28601 is fixed |
| 15 strong_mode_invalid_field_override: ignore | 14 strong_mode_invalid_field_override: ignore |
| 16 | 15 |
| 17 # Allow having TODOs in the code | 16 # Allow having TODOs in the code |
| 18 todo: ignore | 17 todo: ignore |
| 19 | 18 |
| 20 # Allow deprecated calls (although it would be nice to have a distinction | 19 # Allow deprecated calls (although it would be nice to have a distinction |
| 21 # between internal and external deprecated calls). | 20 # between internal and external deprecated calls). |
| 22 deprecated_member_use: ignore | 21 deprecated_member_use: ignore |
| OLD | NEW |