-
Notifications
You must be signed in to change notification settings - Fork 106
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use upstream Spotless configuration #290
Conversation
return Messages.Dashboard_IframePortlet(); | ||
} | ||
|
||
public FormValidation doCheckIframeSource(@QueryParameter String value) { |
Check warning
Code scanning / Jenkins Security Scan
Stapler: Missing POST/RequirePOST annotation
return FormValidation.error(error); | ||
} | ||
return FormValidation.ok(); | ||
public FormValidation doCheckImageUrl(@QueryParameter String value) { |
Check warning
Code scanning / Jenkins Security Scan
Stapler: Missing POST/RequirePOST annotation
* | ||
* @return the jobExecutionMode items | ||
*/ | ||
public ListBoxModel doFillDisplayStatusItems() { |
Check warning
Code scanning / Jenkins Security Scan
Stapler: Missing POST/RequirePOST annotation
return Messages.Dashboard_IframePortlet(); | ||
} | ||
|
||
public FormValidation doCheckIframeSource(@QueryParameter String value) { |
Check warning
Code scanning / Jenkins Security Scan
Stapler: Missing permission check
return FormValidation.error(error); | ||
} | ||
return FormValidation.ok(); | ||
public FormValidation doCheckImageUrl(@QueryParameter String value) { |
Check warning
Code scanning / Jenkins Security Scan
Stapler: Missing permission check
* | ||
* @return the jobExecutionMode items | ||
*/ | ||
public ListBoxModel doFillDisplayStatusItems() { |
Check warning
Code scanning / Jenkins Security Scan
Stapler: Missing permission check
Thanks, @basil, much appreciated! 👍 |
You're welcome! I wanted to take this opportunity to remind you that as a long-time contributor, you are eligible to vote in the upcoming Jenkins Board and Officer Elections at https://community.jenkins.io/g/election-voter-2023 |
As of jenkinsci/plugin-pom#733 the upstream plugin parent POM provides a standard Spotless configuration that Jenkins plugins can opt into by adding a
.mvn_exec_spotless
file. This PR removes the custom Spotless configuration in this repository in favor of the upstream one and reformats the entire repository accordingly. The benefit of this PR is increased consistency and standardization with the rest of the Jenkins ecosystem. If this PR is accepted, the next step would be to check in a.git-blame-ignore-revs
file so that this commit doesn't clutter up the Git blame view.