diff --git a/.github/workflows/markdownlint.yml b/.github/workflows/markdownlint.yml index ec151eb..1ffb66f 100644 --- a/.github/workflows/markdownlint.yml +++ b/.github/workflows/markdownlint.yml @@ -6,5 +6,9 @@ jobs: steps: - name: Check out code uses: actions/checkout@v3 - - name: Run mdl - uses: actionshub/markdownlint@3.1.4 + - name: Lint markdown + uses: DavidAnson/markdownlint-cli2-action@v19 + with: + config: .markdownlint.yml + globs: '*.md,translations/*.md,Comanche055/*.md,Luminary099/*.md' + separator: ',' diff --git a/.mdlrc b/.mdlrc deleted file mode 100644 index a9917dd..0000000 --- a/.mdlrc +++ /dev/null @@ -1 +0,0 @@ -rules '~MD007', '~MD010', '~MD013', '~MD026', '~MD033', '~MD034', '~MD036', '~MD041', '~MD050', '~MD053' diff --git a/Luminary099/README.md b/Luminary099/README.md index f2a0522..fb2fae2 100644 --- a/Luminary099/README.md +++ b/Luminary099/README.md @@ -8,7 +8,7 @@ The contents of the "Luminary099" files, in general, are transcribed from a digi Notations on this document read, in part: -``` +```text ASSEMBLE REVISION 001 OF AGC PROGRAM LMY99 BY NASA 2021112-061 16:27 JULY 14,1969 [Note that this is the date the hardcopy was made, diff --git a/bun.lockb b/bun.lockb index d7c5f99..d39cdeb 100644 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/package.json b/package.json index b7b53a2..bae2c1e 100644 --- a/package.json +++ b/package.json @@ -1,9 +1,10 @@ { "scripts": { - "lint": "markdownlint *.md --config .markdownlint.yml" + "lint": "markdownlint-cli2 *.md translations/*.md Comanche055/*.md Luminary099/*.md --config .markdownlint.yml", + "lint:fix": "markdownlint-cli2 *.md translations/*.md Comanche055/*.md Luminary099/*.md --config .markdownlint.yml --fix" }, "dependencies": {}, "devDependencies": { - "markdownlint-cli": "^0.43.0" + "markdownlint-cli2": "^0.16.0" } }