This is an automated email from the ASF dual-hosted git repository.
sjaranowski pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-shared-resources.git
The following commit(s) were added to refs/heads/master by this push:
new 0588414 [MSHARED-1401] Checkstyle add AvoidStarImport
0588414 is described below
commit 0588414af55e13b48e957616f39c4716b541fe6a
Author: Slawomir Jaranowski <[email protected]>
AuthorDate: Sun Jun 2 11:05:34 2024 +0200
[MSHARED-1401] Checkstyle add AvoidStarImport
spotless allow such imports
---
src/main/resources/config/maven_checks_nocodestyle.xml | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/src/main/resources/config/maven_checks_nocodestyle.xml
b/src/main/resources/config/maven_checks_nocodestyle.xml
index 70e68e8..da70c21 100644
--- a/src/main/resources/config/maven_checks_nocodestyle.xml
+++ b/src/main/resources/config/maven_checks_nocodestyle.xml
@@ -86,6 +86,10 @@ under the License.
<module name="StaticVariableName"/>
<module name="TypeName"/>
+ <!-- Checks for imports -->
+ <!-- See https://checkstyle.org/checks/imports/avoidstarimport.html
-->
+ <module name="AvoidStarImport"/>
+
<!-- Checks for Size Violations. -->
<!-- See https://checkstyle.org/checks/sizes/index.html -->
<module name="MethodLength"/>