diff --git a/sdk/tools/check_packing.py b/sdk/tools/check_packing.py index f56e49a2fb6..fa44079a892 100644 --- a/sdk/tools/check_packing.py +++ b/sdk/tools/check_packing.py @@ -1,14 +1,14 @@ ''' PROJECT: ReactOS code linter LICENSE: MIT (https://spdx.org/licenses/MIT) -PURPOSE: Verifies that there are no headers included when packing is modified +PURPOSE: Verifies that there are no headers included where packing is modified COPYRIGHT: Copyright 2021 Mark Jansen ''' from pathlib import Path import re DEFAULT_SUFFIXES = [ - '.cpp', '.cxx', '.cc', '.c', '.idl' + '.cpp', '.cxx', '.cc', '.c', '.idl', '.hpp', '.h', '.inc' ]