forked from vieter-v/vieter
Fixed lint command
parent
6b1e81a2fd
commit
c8833f06ce
|
@ -2,4 +2,4 @@ pipeline:
|
|||
lint:
|
||||
image: 'chewingbever/vlang:latest'
|
||||
commands:
|
||||
- make fmt
|
||||
- make lint
|
||||
|
|
6
Makefile
6
Makefile
|
@ -51,10 +51,14 @@ watch:
|
|||
|
||||
|
||||
# =====OTHER=====
|
||||
.PHONY: lint
|
||||
lint:
|
||||
$(V) fmt -verify $(SRC_DIR)
|
||||
|
||||
# Format the V codebase
|
||||
.PHONY: fmt
|
||||
fmt:
|
||||
v fmt -w $(SRC_DIR)
|
||||
$(V) fmt -w $(SRC_DIR)
|
||||
|
||||
# Pulls & builds my personal build of the v compiler, required for this project to function
|
||||
.PHONY: customv
|
||||
|
|
Loading…
Reference in New Issue