We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6473777 commit d072438Copy full SHA for d072438
Makefile
@@ -77,6 +77,8 @@ code-lint: ## Lint the code
77
@echo Pylama...
78
@if type pylama >/dev/null 2>&1 ; then pylama $(SRC_CORE) ; \
79
else echo "SKIPPED. Run '$(PIP) install pylama' first." >&2 ; fi
80
+ @if type fixit >/dev/null 2>&1 ; then cd $(SRC_CORE) ; fixit run_rules ; \
81
+ else echo "SKIPPED. Run '$(PIP) install fixit' first." >&2 ; fi
82
@echo Pylint...
83
@if type pylint >/dev/null 2>&1 ; then pylint $(SRC_CORE) ; \
84
else echo "SKIPPED. Run '$(PIP) install pylint' first." >&2 ; fi
0 commit comments