Files
qt-creator/scripts/flake2tasks.py
Lucie Gérard a7956df3ca Use SPDX license identifiers
Replace the current license disclaimer in files by
a SPDX-License-Identifier.

Task-number: QTBUG-67283
Change-Id: I708fd1f9f2b73d60f57cc3568646929117825813
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
2022-08-26 12:27:18 +00:00

29 lines
781 B
Python

#!/usr/bin/env python
# Copyright (C) 2019 The Qt Company Ltd.
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0 WITH Qt-GPL-exception-1.0
'''
flake2tasks.py - Convert flake8 warnings into Qt Creator task files.
SYNOPSIS
flake2tasks.py < logfile > taskfile
'''
import sys
import re
if __name__ == '__main__':
pattern = re.compile(r'^([^:]+):(\d+):\d+: E\d+ (.*)$')
while True:
line = sys.stdin.readline().rstrip()
if not line:
break
match = pattern.match(line)
if match:
file_name = match.group(1).replace('\\', '/')
line_number = match.group(2)
text = match.group(3)
output = "{}\t{}\twarn\t{}".format(file_name, line_number, text)
print(output)