osi-tools/Makefile

11 lines
336 B
Makefile
Raw Normal View History

2018-08-18 18:42:42 +00:00
# Copyright (C) 2018 Luke Shumaker
2023-10-25 07:14:54 +00:00
# Copyright (C) 2023 Umorpha Systems
2018-08-18 18:42:42 +00:00
# SPDX-License-Identifier: AGPL-3.0-or-later
lint:
git ls-files '*osi*'|xargs shellcheck --exclude=SC2064 --
2023-10-25 07:14:54 +00:00
MYPYPATH=$$PWD/mypy-stubs mypy --strict pacman-choices
black --check pacman-choices mypy-stubs
isort --check pacman-choices mypy-stubs
.PHONY: lint