Skip to content

Commit 1bdfc3f

Browse files
committed
Biome: Remove specific config path
1 parent 66dd1e3 commit 1bdfc3f

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

Makefile

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
BIOME_BASE_CMD := $(if $(shell which biome),biome,npx @biomejs/[email protected])
2-
BIOME_CONFIG_PATH := --config-path="biome.json"
32
WRITE_FLAG := --write
43

54
.PHONY: list help
@@ -26,11 +25,11 @@ ifeq ($(BIOME_ARGS), write)
2625
endif
2726

2827
biome-format:
29-
$(BIOME_BASE_CMD) format $(BIOME_CONFIG_PATH) $(FLAG)
28+
$(BIOME_BASE_CMD) format $(FLAG)
3029
biome-lint:
31-
$(BIOME_BASE_CMD) lint $(BIOME_CONFIG_PATH) $(FLAG)
30+
$(BIOME_BASE_CMD) lint $(FLAG)
3231
biome-all:
33-
$(BIOME_BASE_CMD) check $(BIOME_CONFIG_PATH) $(FLAG)
32+
$(BIOME_BASE_CMD) check $(FLAG)
3433

3534
setup-pre-commit:
3635
@if ! command -v pre-commit &> /dev/null; then \

0 commit comments

Comments
 (0)