Skip to content
Snippets Groups Projects
Commit e8ab6ee1 authored by Loïc Correnson's avatar Loïc Correnson
Browse files

[ivette] linter makefile targets

parent a9fd906b
No related branches found
No related tags found
No related merge requests found
......@@ -8,28 +8,24 @@ DOME_API=./src/frama-c
COPYRIGHT=CEA LIST / LSL
# --------------------------------------------------------------------------
.PHONY: all app dev doc serve dist typecheck lint tsc
.PHONY: all app dev doc serve dist lint fixlint
all: typecheck lint app
all: lint app
app: dome-app
dev: dome-dev
dist: dome-dist
typecheck: dome-pkg dome-templ
@echo "[Ivette] running ts typechecker"
yarn run typecheck
lint: dome-pkg dome-templ
@echo "[Ivette] running ts linter"
@echo "[Ivette] running typechecker & linter"
yarn run typecheck
yarn run lint
fixlint: dome-pkg dome-templ
@echo "[Ivette] running ts linter (with fix)"
@echo "[Ivette] running typechecker & linter (fix mode)"
yarn run typecheck
yarn run lint --fix
tsc: typecheck fixlint
# --------------------------------------------------------------------------
# --- Frama-C API
# --------------------------------------------------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment