diff --git a/.github/workflows/markdownLint.yml b/.github/workflows/markdownLint.yml new file mode 100644 index 0000000..78e8327 --- /dev/null +++ b/.github/workflows/markdownLint.yml @@ -0,0 +1,14 @@ +name: Deploy to Server + +on: + push: + pull_request: + +jobs: + build-and-test: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0 + - name: Run markdownlint-cli2 + uses: DavidAnson/markdownlint-cli2-action@b4c9feab76d8025d1e83c653fa3990936df0e6c8 # v16.0.0 diff --git a/markdownlint-cl2.jsonc b/markdownlint-cl2.jsonc new file mode 100644 index 0000000..39c5981 --- /dev/null +++ b/markdownlint-cl2.jsonc @@ -0,0 +1,13 @@ + +{ + "config": { + "line-length": false, + "no-hard-tabs": false, + "no-trailing-punctuation": false, + "no-inline-html": false, + "no-bare-urls": false, + "no-space-in-emphasis":false, + "link-fragments":false + }, + "ignores": [".git", "node_modules"] +}