diff --git a/JUnit.md b/JUnit.md
new file mode 100644
index 0000000..e874e49
--- /dev/null
+++ b/JUnit.md
@@ -0,0 +1,76 @@
+## Getting JUnit XML from ShellCheck
+
+ShellCheck does not have a JUnit XML formatter, but here you can find `checkstyle2junit.xslt`, a XSLT program that converts from Checkstyle XML output to JUnit XML.
+
+Here's shellcheck's checkstyle XML output:
+
+ $ shellcheck -f checkstyle foo.bash bar.bash
+
+
+
+
+
+
+
+
+
+
+
+Here it is with the XSLT applied using `xmlstarlet`:
+
+ $ shellcheck -f checkstyle foo.bash bar.bash | xmlstarlet tr checkstyle2junit.xslt
+
+
+
+
+ Line 1: Tips depend on target shell and yours is unknown. Add a shebang.
+ Line 1: Double quote to prevent globbing and word splitting.
+
+
+
+
+
+`checkstyle2junit.xslt` :
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Line
+
+ :
+
+
+
+
\ No newline at end of file