mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
[SDK] Fix missing comma in check_packing.py
This commit is contained in:
parent
2567a66399
commit
f89b406de6
1 changed files with 2 additions and 2 deletions
|
@ -1,14 +1,14 @@
|
||||||
'''
|
'''
|
||||||
PROJECT: ReactOS code linter
|
PROJECT: ReactOS code linter
|
||||||
LICENSE: MIT (https://spdx.org/licenses/MIT)
|
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 <mark.jansen@reactos.org>
|
COPYRIGHT: Copyright 2021 Mark Jansen <mark.jansen@reactos.org>
|
||||||
'''
|
'''
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
import re
|
import re
|
||||||
|
|
||||||
DEFAULT_SUFFIXES = [
|
DEFAULT_SUFFIXES = [
|
||||||
'.cpp', '.cxx', '.cc', '.c', '.idl'
|
'.cpp', '.cxx', '.cc', '.c', '.idl',
|
||||||
'.hpp', '.h', '.inc'
|
'.hpp', '.h', '.inc'
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue