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