diff options
author | HampusM <hampus@hampusmat.com> | 2022-06-28 17:42:18 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-06-28 17:42:18 +0200 |
commit | 1e60d3ab02dbe7c609237c087575fe0801edf8eb (patch) | |
tree | f9f1c446f14d7ca5c9eb481f27c16caa4ff36492 /scripts/lint-includes.sh | |
parent | 02cd1707f2c22fb6cd42bbb1ebfe1a0cd28ac3ff (diff) |
refactor: improve includes
Diffstat (limited to 'scripts/lint-includes.sh')
-rwxr-xr-x | scripts/lint-includes.sh | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/scripts/lint-includes.sh b/scripts/lint-includes.sh new file mode 100755 index 0000000..4248a80 --- /dev/null +++ b/scripts/lint-includes.sh @@ -0,0 +1,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 \ + |