18 lines
514 B
Makefile
18 lines
514 B
Makefile
# Copyright (C) 2018 Luke Shumaker
|
|
# Copyright (C) 2023 Umorpha Systems
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
shell_programs = osi-mk
|
|
shell_programs += osi-shell
|
|
shell_programs += osi-mount
|
|
shell_programs += osi-extract
|
|
|
|
python_programs = pacman-choices
|
|
|
|
lint:
|
|
git ls-files ':*.sh' $(shell_programs) |xargs shellcheck --exclude=SC2064 --
|
|
MYPYPATH=$$PWD/mypy-stubs mypy --strict $(python_programs)
|
|
black --check $(python_programs) mypy-stubs
|
|
isort --check $(python_programs) mypy-stubs
|
|
.PHONY: lint
|