diff --git a/.markdownlint.yaml b/.markdownlint.yaml new file mode 100644 index 00000000..1ef97688 --- /dev/null +++ b/.markdownlint.yaml @@ -0,0 +1,7 @@ +# Default state for all rules +default: true + +# MD013/line-length - Line length +MD013: + line_length: 120 + tables: false diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index e38fed7c..b7b6633d 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -84,10 +84,11 @@ repos: - id: shfmt-docker files: ^\.envrc|.*\.sh$ - - repo: https://github.com/markdownlint/markdownlint - rev: v0.12.0 + - repo: https://github.com/igorshubovych/markdownlint-cli + rev: v0.43.0 hooks: - id: markdownlint + args: ["--fix"] exclude: > (?x)^( .github/pull_request_template.md| diff --git a/DEVELOPER.md b/DEVELOPER.md index 9b0d7db5..3bed6635 100644 --- a/DEVELOPER.md +++ b/DEVELOPER.md @@ -71,14 +71,14 @@ tags: ### Production Releases * Run `./scripts/release.sh`: - * Calculate new version based on conventional commits - * Update version in `pyproject.toml` - * Update `CHANGELOG.md` - * Create a tag for the version and commit + * Calculate new version based on conventional commits + * Update version in `pyproject.toml` + * Update `CHANGELOG.md` + * Create a tag for the version and commit * Once pushed a Github workflow will - * Create a Github release - * Publish the following tags to dockerhub: - * `latest` - * `` - * `.` - * `..` + * Create a Github release + * Publish the following tags to dockerhub: + * `latest` + * `` + * `.` + * `..`