File tree Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change 37
37
import urllib .parse
38
38
39
39
# Put any lint warnings you want to fully ignore into this list.
40
+ # (Include a short explanation of why.)
40
41
IGNORE_LINT_WARNINGS = [
41
- 'build/include_subdir' ,
42
- 'readability/casting' ,
43
- 'whitespace/indent' ,
44
- 'whitespace/line_length'
42
+ 'build/include_subdir' , # doesn't know about our include paths
43
+ 'build/c++11' , # ignore "unapproved c++11 header" warning
44
+ 'readability/casting' , # allow non-C++ casts in rare occasions
45
+ 'whitespace/indent' , # we rely on our code formatter for this...
46
+ 'whitespace/line_length' # ...and for this
45
47
]
46
- # Exclude files within the following paths (specified as regexes)
48
+ # Exclude files within the following paths (specified as regexes).
47
49
EXCLUDE_PATH_REGEX = [
48
- r'^analytics/ios_headers/'
50
+ # These files are copied from an external repo and are outside our control.
51
+ r'^analytics/ios_headers/'
49
52
]
50
53
# The linter gives every error a confidence score.
51
54
# 1 = It's most likely not really an issue.
You can’t perform that action at this time.
0 commit comments