We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5422e9b commit d770769Copy full SHA for d770769
2 files changed
.github/workflows/linting.yml
@@ -20,6 +20,14 @@ jobs:
20
- uses: actions/checkout@v2
21
- uses: pipeline-components/php-linter@master
22
23
+ lint-markdown:
24
+ runs-on: ubuntu-20.04
25
+ steps:
26
+ - uses: actions/checkout@v2
27
+ - uses: pipeline-components/remark-lint@master
28
+ with:
29
+ args: remark --rc-path=build/.remarkrc --ignore-pattern='*/vendor/*' .
30
+
31
lint-yaml:
32
runs-on: ubuntu-20.04
33
steps:
build/.remarkrc
@@ -0,0 +1,6 @@
1
+{
2
+ "plugins": [
3
+ "remark-preset-lint-recommended",
4
+ ["remark-lint-list-item-indent", "space"]
5
+ ]
6
+}
0 commit comments