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
|
|
|
|
|
2018-08-16 05:32:59 +00:00
|
|
|
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
|