blob: a5b906f5558b990ae2604b96bc4aa1fae0b03ac6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# options passed to IWYU
iwyu_options:
- '--max_line_length=100'
- '--no_fwd_decls'
- '--prefix_header_includes=add'
- '--transitive_includes_only'
# options passed to the fix script
fix_options:
- '--blank_lines'
- '--nocomments'
- '--noreorder'
- '--safe_headers'
# filename regex to swap no_include in place
# quotes and brackets not included quotes are always assumed
# since this is targeting IWYU added headers
no_includes:
# prefixes (non regex) to skip
skip_files:
# regex file paths to add keep pragma
# include quotes are angle brackets
keep_includes:
|