Created
December 30, 2024 23:56
-
-
Save romani/8b00fca595f908423ff2bd0dceb2b7a4 to your computer and use it in GitHub Desktop.
Issue #15944
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0"?> | |
| <!DOCTYPE module PUBLIC | |
| "-//Checkstyle//DTD Checkstyle Configuration 1.3//EN" | |
| "https://checkstyle.org/dtds/configuration_1_3.dtd"><module name="Checker"> | |
| <module name="TreeWalker"> | |
| <module name="RegexpSinglelineJava"> | |
| <!-- . matches any character, so we need to | |
| escape it and use \. to match dots. --> | |
| <property name="format" value="static import .*\.\*;"/> | |
| <property name="ignoreComments" value="true"/> | |
| <property name="message" value="use static and star"/> | |
| </module> | |
| </module> | |
| </module> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment