Add gomodUpdateImportPaths to renovate config#135
Conversation
|
Codeowners approval required for this PR: |
There was a problem hiding this comment.
Code Review
This pull request updates the renovate.json configuration to include gomodUpdateImportPaths in the postUpdateOptions. A review comment identifies a potential syntax error in the JSON structure, noting that a closing bracket for a preceding array (likely packageRules) appears to be missing, which would prevent the configuration from being parsed correctly.
| "prCreation": "immediate" | ||
| }, | ||
| "postUpdateOptions": ["gomodTidy"] | ||
| "postUpdateOptions": [ |
There was a problem hiding this comment.
The JSON configuration appears to be syntactically invalid. Line 10 ends with a closing brace }, which suggests it is closing an object, but if the preceding section was packageRules (which is an array), it should be closed with a closing bracket ],. This syntax error will prevent Renovate from parsing the configuration file correctly.
Related PR(s)
Related Issue(s)
Summary / Background