64 lines
1.8 KiB
Makefile
64 lines
1.8 KiB
Makefile
## help: print this help message
|
|
.PHONY: help
|
|
help:
|
|
@echo 'Usage:'
|
|
@sed -n 's/^##//p' ${MAKEFILE_LIST} | column -t -s ':' | sed -e 's/^/ /'
|
|
|
|
## all: generate docs, lint, and run tests
|
|
.PHONY: all
|
|
all: doc lint test
|
|
|
|
venv:
|
|
python3 -m venv venv
|
|
venv/bin/pip install -r scripts/requirements.txt
|
|
|
|
## doc: generate documentation
|
|
.PHONY: doc
|
|
doc: scripts/nvim_doc_tools venv
|
|
venv/bin/python scripts/main.py generate
|
|
venv/bin/python scripts/main.py lint
|
|
|
|
## test: run tests
|
|
.PHONY: test
|
|
test:
|
|
./run_tests.sh
|
|
|
|
## lint: run linters and LuaLS typechecking
|
|
.PHONY: lint
|
|
lint: scripts/nvim-typecheck-action fastlint
|
|
./scripts/nvim-typecheck-action/typecheck.sh --workdir scripts/nvim-typecheck-action lua
|
|
|
|
## fastlint: run only fast linters
|
|
.PHONY: fastlint
|
|
fastlint: scripts/nvim_doc_tools venv
|
|
venv/bin/python scripts/main.py lint
|
|
luacheck lua tests --formatter plain
|
|
stylua --check lua tests
|
|
|
|
## profile: use LuaJIT profiler to profile the plugin
|
|
.PHONY: profile
|
|
profile:
|
|
nvim --clean -u tests/perf_harness.lua -c 'lua jit_profile()'
|
|
|
|
## flame_profile: create a trace in the chrome profiler format
|
|
.PHONY: flame_profile
|
|
flame_profile:
|
|
nvim --clean -u tests/perf_harness.lua -c 'lua flame_profile()'
|
|
@echo "Visit https://ui.perfetto.dev/ and load the profile.json file"
|
|
|
|
## benchmark: benchmark performance opening directory with many files
|
|
.PHONY: benchmark
|
|
benchmark:
|
|
nvim --clean -u tests/perf_harness.lua -c 'lua benchmark(10)'
|
|
@cat tests/perf/benchmark.txt
|
|
|
|
scripts/nvim_doc_tools:
|
|
git clone https://github.com/stevearc/nvim_doc_tools scripts/nvim_doc_tools
|
|
|
|
scripts/nvim-typecheck-action:
|
|
git clone https://github.com/stevearc/nvim-typecheck-action scripts/nvim-typecheck-action
|
|
|
|
## clean: reset the repository to a clean state
|
|
.PHONY: clean
|
|
clean:
|
|
rm -rf scripts/nvim_doc_tools scripts/nvim-typecheck-action venv .testenv tests/perf profile.json
|