Justfile syntax highlighting fails if a command is called import:, like in this example:
# Syntax works fine here
start:
docker compose up -d --build --remove-orphans
# Everything after this line has no colours
import:
docker run -it --rm ubuntu:24.04 bash
stop:
docker compose down