diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index a41045e..67587bc 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -37,9 +37,6 @@ jobs: uses: actions/checkout@v4 - name: Lint Markdown code uses: DavidAnson/markdownlint-cli2-action@v17 - with: - config: 'config/custom.markdownlint.jsonc' - globs: '**/*.md' clippy: name: Lint with Clippy runs-on: windows-latest diff --git a/.markdownlint-cli2.yaml b/.markdownlint-cli2.yaml index 43cb7e6..1e00f55 100644 --- a/.markdownlint-cli2.yaml +++ b/.markdownlint-cli2.yaml @@ -7,3 +7,7 @@ config: no-inline-html: false gitignore: true globs: ['**.md'] + +MD013: + line_length: 160 + tables: false diff --git a/config/custom.markdownlint.jsonc b/config/custom.markdownlint.jsonc deleted file mode 100644 index 5d4f29b..0000000 --- a/config/custom.markdownlint.jsonc +++ /dev/null @@ -1,3 +0,0 @@ -{ - "line_length": 120 -} \ No newline at end of file