Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(205)

Side by Side Diff: pkg/front_end/.analysis_options

Issue 2693673002: Add some analysis excludes for pkg/front_end. (Closed)
Patch Set: just exclude test/fasta/** Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 analyzer: 1 analyzer:
2 strong-mode: true 2 strong-mode: true
3 language: 3 language:
4 enableSuperMixins: true 4 enableSuperMixins: true
5 exclude:
6 # TODO(devoncarew): Without this exclude I see ~400 analysis errors.
7 - test/fasta/**
5 errors: 8 errors:
6 # Omits warnigns due to missing `@virtual` 9 # Omits warnings due to missing `@virtual`
7 # TODO(sigmund): enable once #28601 is fixed 10 # TODO(sigmund): enable once #28601 is fixed
8 strong_mode_invalid_field_override: ignore 11 strong_mode_invalid_field_override: ignore
9 12
10 # 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;`,
11 # also removes warnings due to a bad interaction between inference of 14 # also removes warnings due to a bad interaction between inference of
12 # guarded type arguments and downward cast warnings (see #28646). 15 # guarded type arguments and downward cast warnings (see #28646).
13 strong_mode_down_cast_composite: ignore 16 strong_mode_down_cast_composite: ignore
14 17
15 # Allow having TODOs in the code 18 # Allow having TODOs in the code
16 todo: ignore 19 todo: ignore
17 20
18 # Allow deprecated calls (althout it would be nice to have a distinction 21 # Allow deprecated calls (although it would be nice to have a distinction
19 # between internal and external deprecated calls). 22 # between internal and external deprecated calls).
20 deprecated_member_use: ignore 23 deprecated_member_use: ignore
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698