mirror of
https://github.com/pre-commit/pre-commit-hooks.git
synced 2025-08-14 09:27:21 +08:00
52 lines
1.3 KiB
Python
52 lines
1.3 KiB
Python
import argparse
|
|
import os.path
|
|
from typing import Optional
|
|
from typing import Sequence
|
|
|
|
|
|
CONFLICT_PATTERNS = [
|
|
b'<<<<<<< ',
|
|
b'======= ',
|
|
b'=======\n',
|
|
b'>>>>>>> ',
|
|
]
|
|
|
|
|
|
def is_in_merge() -> int:
|
|
return (
|
|
os.path.exists(os.path.join('.git', 'MERGE_MSG')) and
|
|
(
|
|
os.path.exists(os.path.join('.git', 'MERGE_HEAD')) or
|
|
os.path.exists(os.path.join('.git', 'rebase-apply')) or
|
|
os.path.exists(os.path.join('.git', 'rebase-merge'))
|
|
)
|
|
)
|
|
|
|
|
|
def main(argv: Optional[Sequence[str]] = None) -> int:
|
|
parser = argparse.ArgumentParser()
|
|
parser.add_argument('filenames', nargs='*')
|
|
parser.add_argument('--assume-in-merge', action='store_true')
|
|
args = parser.parse_args(argv)
|
|
|
|
if not is_in_merge() and not args.assume_in_merge:
|
|
return 0
|
|
|
|
retcode = 0
|
|
for filename in args.filenames:
|
|
with open(filename, 'rb') as inputfile:
|
|
for i, line in enumerate(inputfile):
|
|
for pattern in CONFLICT_PATTERNS:
|
|
if line.startswith(pattern):
|
|
print(
|
|
f'Merge conflict string "{pattern.decode()}" '
|
|
f'found in {filename}:{i + 1}',
|
|
)
|
|
retcode = 1
|
|
|
|
return retcode
|
|
|
|
|
|
if __name__ == '__main__':
|
|
exit(main())
|