From 9f7bdaf3b4af4ea6c818edec8e4d5a01ede2d73d Mon Sep 17 00:00:00 2001 From: devgianlu Date: Thu, 30 Jan 2025 22:36:59 +0100 Subject: [PATCH] Meta: Handle formatting of IPC `partial dictionary` syntax --- Meta/check-idl-files.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Meta/check-idl-files.py b/Meta/check-idl-files.py index 4c320008f10..58ee4ac66b3 100755 --- a/Meta/check-idl-files.py +++ b/Meta/check-idl-files.py @@ -11,7 +11,7 @@ script_name = pathlib.Path(__file__).resolve().name lines_to_skip = re.compile( r"^($| *//|\};|#import |.+ includes .+|\[[^\]]+\]" - r"|interface |dictionary |enum |namespace |typedef |callback )" + r"|interface |(?:partial )?dictionary |enum |namespace |typedef |callback )" ) parser = argparse.ArgumentParser()