aboutsummaryrefslogtreecommitdiff
path: root/scripts/lint-includes.sh
blob: 4248a80c4df78b50fd37d2bdaa20998f800d90ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh

# See https://github.com/include-what-you-use/include-what-you-use

iwyu_tool.py \
	--jobs 16 \
	-p build \
	src \
	include \
	-- \
	-Xiwyu --cxx17ns \
	-Xiwyu --check_also='*.hpp' \
| fix_includes.py \
	--blank_lines \
	--reorder \
	--nocomments

# -Xiwyu --mapping_file=$PWD/mappings.imp \