Gallardot commented on code in PR #16158: URL: https://github.com/apache/dolphinscheduler/pull/16158#discussion_r1642059776
########## .idea/vcs.xml: ########## @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project version="4"> + <component name="IssueNavigationConfiguration"> + <option name="links"> + <list> + <IssueNavigationLink> + <option name="issueRegexp" value="#(\d+)" /> + <option name="linkRegexp" value="https://github.com/apache/dolphinscheduler/issues/$1" /> + </IssueNavigationLink> + </list> + </option> + </component> + <component name="VcsDirectoryMappings"> + <mapping directory="" vcs="Git" /> + </component> +</project> Review Comment: The default configuration for this file is as follows: ``` <?xml version="1.0" encoding="UTF-8"?> <project version="4"> <component name="VcsDirectoryMappings"> <mapping directory="" vcs="Git" /> </component> </project> ``` Most developers' configuration files should look like this. I have now only added one component: ``` <component name="IssueNavigationConfiguration"> <option name="links"> <list> <IssueNavigationLink> <option name="issueRegexp" value="#(\d+)" /> <option name="linkRegexp" value="https://github.com/apache/dolphinscheduler/issues/$1" /> </IssueNavigationLink> </list> </option> </component> ``` I am not sure if other developers will modify this file to implement other functionalities. With IDEA's issue tracker, we can effortlessly navigate to Github issues or pull requests, facilitating a better understanding of the change history for developers. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
