Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
docs(self-hosted): correct indentation of list
Prettier and MkDocs don't agree on how many spaces are needed for a
`<ul>`'s child
  • Loading branch information
jamietanna committed Dec 1, 2025
commit bbaa7744e5b191e67bd1efd277a8bf5eaa78bb32
7 changes: 4 additions & 3 deletions docs/usage/security-and-permissions.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,11 +111,12 @@

For instance:

<!-- prettier-ignore -->
- updates that invoke Gradle (i.e. `./gradlew`), such as [updating the Gradle Wrapper](./modules/manager/gradle-wrapper/index.md) or [performing Gradle Verification Metadata](./modules/manager/gradle/index.md#dependency-verification)
- because the Gradle buildscript is evaluated at this time (i.e. to determine which dependencies are available to then update the verification metadata)
- because the Gradle buildscript is evaluated at this time (i.e. to determine which dependencies are available to then update the verification metadata)

Check failure on line 116 in docs/usage/security-and-permissions.md

View workflow job for this annotation

GitHub Actions / lint-docs

Unordered list indentation

docs/usage/security-and-permissions.md:116:1 MD007/ul-indent Unordered list indentation [Expected: 2; Actual: 4] https://github.com/DavidAnson/markdownlint/blob/v0.38.0/doc/md007.md
- executing any `postUpgradeTasks` in a way that may use an updated dependency
- i.e. if you have a postUpgradeTask for `make docs`, where the version of your docs builder has updated
- i.e. if your pre-commit hook, where the version of a linter has updated
- i.e. if you have a postUpgradeTask for `make docs`, where the version of your docs builder has updated

Check failure on line 118 in docs/usage/security-and-permissions.md

View workflow job for this annotation

GitHub Actions / lint-docs

Unordered list indentation

docs/usage/security-and-permissions.md:118:1 MD007/ul-indent Unordered list indentation [Expected: 2; Actual: 4] https://github.com/DavidAnson/markdownlint/blob/v0.38.0/doc/md007.md
- i.e. if your pre-commit hook, where the version of a linter has updated

Check failure on line 119 in docs/usage/security-and-permissions.md

View workflow job for this annotation

GitHub Actions / lint-docs

Unordered list indentation

docs/usage/security-and-permissions.md:119:1 MD007/ul-indent Unordered list indentation [Expected: 2; Actual: 4] https://github.com/DavidAnson/markdownlint/blob/v0.38.0/doc/md007.md

Depending on the self-hosted configuration, it may also be possible for package manager scripts to execute post-update (if using [`allowScripts=true`](./self-hosted-configuration.md#allowscripts) alongside [`ignoreScripts=false`](./configuration-options.md#ignorescripts)):

Expand Down
Loading