forked from Rust-GCC/gccrs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Addresses Rust-GCC#487 Remark.yml contains the workflow and .remarkrc is the linter's config file. Signed-off-by: M V V S Manoj Kumar <[email protected]>
- Loading branch information
Showing
2 changed files
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: Remark | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
remark: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
# Setup | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
|
||
- name: Setup Node.js | ||
uses: actions/[email protected] | ||
with: | ||
node-version: '12.x' | ||
|
||
- name: Install remark | ||
run: npm install remark-cli remark-lint remark-lint-maximum-line-length remark-preset-lint-recommended remark-gfm | ||
|
||
# Run | ||
- name: Check *.md files | ||
run: git ls-files -z *.md | xargs -0 -n 1 npx remark -u lint -f > /dev/null | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"plugins": [ | ||
"remark-preset-lint-recommended", | ||
"remark-gfm", | ||
["remark-lint-maximum-line-length", 120], | ||
["remark-lint-list-item-indent", false], | ||
["remark-lint-no-literal-urls", false], | ||
["remark-lint-no-shortcut-reference-link", false] | ||
], | ||
"settings": { | ||
"commonmark": true | ||
} | ||
} | ||
|