-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
60 lines (46 loc) · 2.07 KB
/
Makefile
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#################################################################################
# SELF DOCUMENTING HELP #
#################################################################################
.DEFAULT_GOAL := help
.PHONY: help
help: ## Display this help
@awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n make \033[36m<target>\033[0m\n"} /^[a-zA-Z_-]+:.*?##/ { printf " \033[36m%-20s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST)
#################################################################################
# GLOBALS #
#################################################################################
PROJECT_DIR := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
PROJECT_NAME = {{ cookiecutter.project_name }}
PYTHON_INTERPRETER = python
#################################################################################
# COMMANDS #
#################################################################################
##@ Formatting
.PHONY: format-black
format-black: ## black (code formatter)
@black .
.PHONY: format-isort
format-isort: ## isort (import formatter)
@isort .
.PHONY: format
format: format-black format-isort ## run all formatters
##@ Linting
.PHONY: lint-black
lint-black: ## black in linting mode
@black . --check
.PHONY: lint-isort
lint-isort: ## isort in linting mode
@isort . --check
.PHONY: lint-flake8
lint-flake8: ## flake8 (linter)
@flake8 .
.PHONY: lint-mypy
lint-mypy: ## mypy (static-type checker)
@mypy --config-file pyproject.toml .
.PHONY: lint-mypy-report
lint-mypy-report: ## run mypy & create report
@mypy --config-file pyproject.toml . --html-report ./mypy_html
lint: lint-black lint-isort lint-flake8 lint-mypy ## run all linters
##@ Configuration
.PHONY: cookiecutterrc
cookiecutterrc: ## create .cookiecutterrc
@echo 'default_context:\n full_name: ""\n email: ""\n' > ~/.cookiecutterrc