Skip to content

Commit

Permalink
Merge pull request #46 from Decompollaborate/develop
Browse files Browse the repository at this point in the history
1.7.10
  • Loading branch information
AngheloAlf authored Sep 24, 2023
2 parents 89ae90f + 0fe50f0 commit e0d8003
Show file tree
Hide file tree
Showing 21 changed files with 771 additions and 106 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/md_lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Lint markdown files

# Build on every branch push, tag push, and pull request change:
on: [push, pull_request]

jobs:
checks:
runs-on: ubuntu-latest
name: Lint md files
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Lint markdown files
uses: articulate/actions-markdownlint@v1.1.0
with:
config: .markdownlint.jsonc
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,8 @@ dmypy.json
cython_debug/


.vscode/
.vscode/*
!.vscode/extensions.json

# Generated by Cargo
# will have compiled files and executables
Expand Down
4 changes: 0 additions & 4 deletions .markdownlint.json

This file was deleted.

14 changes: 14 additions & 0 deletions .markdownlint.jsonc
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
// https://github.com/DavidAnson/markdownlint/blob/main/doc/md024.md
// MD024 - Multiple headings with the same content
"MD024": {
"siblings_only": true
},

// https://github.com/DavidAnson/markdownlint/blob/main/doc/md013.md
// MD013 - Line length
"MD013": {
"code_block_line_length": 120,
"headings": false
}
}
7 changes: 7 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=827846
// for the documentation about the extensions.json format
"recommendations": [
"davidanson.vscode-markdownlint"
]
}
Loading

0 comments on commit e0d8003

Please sign in to comment.