Closed letzya closed 1 month ago
Name | Link |
---|---|
Latest commit | 463ed06abe934eb282815a21255702c342bdd936 |
Latest deploy log | https://app.netlify.com/sites/tyk-docs/deploys/66e458577739c50008fce94c |
Deploy Preview | https://deploy-preview-5404--tyk-docs.netlify.app |
Preview on mobile | Toggle QR Code...Use your smartphone camera to open QR code link. |
To edit notification comments on pull requests, go to your Netlify site configuration.
/release release-5.5
@letzya Sorry, but I do not understand!
/release to release-5.5
Working on it! Note that it can take a few minutes.
@letzya Succesfully merged PR
/release to release-5.4
Working on it! Note that it can take a few minutes.
@letzya Succesfully merged PR
User description
For internal users - Please add a Jira DX PR ticket to the subject!
Preview Link
Description
Screenshots (if appropriate)
Checklist
master
.Maintain a consistent order of keys in the
___ **Consider maintaining a consistent order of keys in thelastmod
arraylastmod
array to improvereadability and maintainability. The order of keys was changed in this PR, which
might lead to confusion or errors in future configurations.** [tyk-docs/config.toml [40]](https://github.com/TykTechnologies/tyk-docs/pull/5404/files#diff-b5607885ca99f865246defbac60f7998022af1e5da2cba05d27eac99e12a15faR40-R40) ```diff -lastmod = ["lastmod", "publishDate", ":git",':fileModTime', "date"] +lastmod = ["lastmod", ":git", ':fileModTime', "date", "publishDate"] ```
Suggestion importance[1-10]: 8
Why: The suggestion addresses a maintainability issue by recommending a consistent order of keys in the `lastmod` array, which can help prevent confusion or errors in future configurations. This is a valid and useful suggestion for improving code readability and maintainability. The existing code matches the new hunk, and the improved code correctly reflects the suggestion.