OLD | NEW |
| 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 |
| 3 # BSD-style license that can be found in the LICENSE file. |
| 4 |
1 analyzer: | 5 analyzer: |
2 strong-mode: true | 6 strong-mode: true |
3 language: | 7 language: |
4 enableSuperMixins: true | 8 enableSuperMixins: true |
5 exclude: | 9 exclude: |
6 # TODO(devoncarew): Without this exclude I see ~400 analysis errors. | 10 # TODO(devoncarew): Without this exclude I see ~400 analysis errors. |
7 - test/fasta/** | 11 - test/fasta/** |
8 errors: | 12 errors: |
9 # Omits warnings due to missing `@virtual` | 13 # Omits warnings due to missing `@virtual` |
10 # TODO(sigmund): enable once #28601 is fixed | 14 # TODO(sigmund): enable once #28601 is fixed |
11 strong_mode_invalid_field_override: ignore | 15 strong_mode_invalid_field_override: ignore |
12 | 16 |
13 # Allow having TODOs in the code | 17 # Allow having TODOs in the code |
14 todo: ignore | 18 todo: ignore |
15 | 19 |
16 # Allow deprecated calls (although it would be nice to have a distinction | 20 # Allow deprecated calls (although it would be nice to have a distinction |
17 # between internal and external deprecated calls). | 21 # between internal and external deprecated calls). |
18 deprecated_member_use: ignore | 22 deprecated_member_use: ignore |
OLD | NEW |