-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMakefile
More file actions
38 lines (29 loc) · 904 Bytes
/
Makefile
File metadata and controls
38 lines (29 loc) · 904 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
## Makefile aliases for Task commands
## All linting tasks are now managed in Taskfile.yml
## These targets provide backward compatibility
.PHONY: vale
vale: ## Download vale locally if necessary
task vale:install
.PHONY: lint
lint: ## Run all linting (vale + markdownlint)
task lint
.PHONY: vale-changed
vale-changed: ## Run vale on markdown files changed in current branch
task vale:changed
.PHONY: check-files
check-files: ## Check for broken file references in HTML build output
task check:files
.PHONY: fmt
fmt: ## Format all markdown files with prettier
task fmt
.PHONY: fmt-check
fmt-check: ## Check markdown formatting without making changes
task fmt:check
.PHONY: check
check: ## Run all checks (lint + formatting + file references)
task check
.PHONY:
sync:
git submodule update --init --recursive
update-submodules:
git submodule update --remote --merge && git submodule sync