We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44c5b15 commit 873c1afCopy full SHA for 873c1af
.mdlrc
@@ -0,0 +1,2 @@
1
+# Disable "MD013 Line length" and "MD029 Ordered list item prefix".
2
+rules "~MD013", "~MD029"
Makefile
@@ -0,0 +1,13 @@
+.PHONY: check phpstan phpcs markdownlint
+
3
+check: phpstan phpcs markdownlint
4
5
+phpstan:
6
+ -vendor/bin/phpstan analyse .
7
8
+phpcs:
9
+ -vendor/bin/phpcs -s bin/ src/
10
11
+# gem install mdl
12
+markdownlint:
13
+ -mdl *.md
0 commit comments