mirror of
https://github.com/ONLYOFFICE/document-server-integration.git
synced 2026-04-07 14:06:11 +08:00
18 lines
457 B
Makefile
18 lines
457 B
Makefile
.DEFAULT_GOAL := help
|
|
|
|
.PHONY: help
|
|
help: # Show help message for each of the Makefile recipes.
|
|
@grep -E "^[a-z]+: #" $(MAKEFILE_LIST) | \
|
|
sort | \
|
|
awk 'BEGIN {FS = ": # "}; {printf "%s: %s\n", $$1, $$2}'
|
|
|
|
.PHONY: install
|
|
install: # Install dependencies and initialize the project.
|
|
@bundle install
|
|
@bundle exec tapioca init
|
|
|
|
.PHONY: lint
|
|
lint: # Lint the source code for style and check for types.
|
|
@bundle exec rubocop
|
|
@bundle exec srb tc
|