Plugin for JetBrains IDE’s that uses Vale CLI to check markdown,asciidoc and other documentation formats
Tip
|
Pet project. Not associated with Errata (Vale CLI creators) or JetBrains whatsoever |
See the plugin user documentation at the JetBrains Plugin Marketplace or at the project Gitlab Pages
./gradlew runForManualTests
This task configures the IntelliJ sandbox to not confirm exit or show tips at startup among other things. It opens a sample project with a couple of markdown files to test with the plugin.
./gradlew runIde
The standard gradle intellij plugin task that runs the IDE with the developed plugin installed.
-
First build the builder docker image
docker build . -t myuser/builder
-
Get an interactive session on the builder container, mounting the project folder.
docker run -it --rm -u gradle -v "$PWD":/home/gradle/project -w /home/gradle/project myuser/builder /bin/bash
-
Run the test gradle task
./gradlew test
-
Exit the container and inspect test results
exit
open build/reports/tests/test/index.html