blob: 2e7ee044ef755cb0adf837f138021dbb1fb856d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/usr/bin/make -f
# SPDX-FileCopyrightText: 2024 Matthew Fennell <matthew@fennell.dev>
#
# SPDX-License-Identifier: AGPL-3.0-only
MAKEFLAGS+=--silent
.PHONY: check
check:
precious --config=./.precious.toml --ascii tidy --all
precious --config=./.precious.toml --ascii lint --all
|