We are using the checker in our CI/CD to be able to find issue as soon as possible in our plugins for the Qt6 version of QGIS.
We found that there are not support for typing check and we can have error on Qt6 version of QGIS. For example:
def data(self, index: QtCore.QModelIndex, role: int = QtCore.Qt.DisplayRole):
QtCore.Qt.DisplayRole must be replaced by Qt.ItemDataRole.DisplayRole
Do you think it's possible to check also typing ?
Thanks again for this tool ! Very useful for QGIS plugin developpers.
We are using the checker in our CI/CD to be able to find issue as soon as possible in our plugins for the Qt6 version of QGIS.
We found that there are not support for typing check and we can have error on Qt6 version of QGIS. For example:
QtCore.Qt.DisplayRolemust be replaced byQt.ItemDataRole.DisplayRoleDo you think it's possible to check also typing ?
Thanks again for this tool ! Very useful for QGIS plugin developpers.