Skip to content

Commit d072438

Browse files
added fixit
1 parent 6473777 commit d072438

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,8 @@ code-lint: ## Lint the code
7777
@echo Pylama...
7878
@if type pylama >/dev/null 2>&1 ; then pylama $(SRC_CORE) ; \
7979
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
8082
@echo Pylint...
8183
@if type pylint >/dev/null 2>&1 ; then pylint $(SRC_CORE) ; \
8284
else echo "SKIPPED. Run '$(PIP) install pylint' first." >&2 ; fi

0 commit comments

Comments
 (0)