1 /* 2 CustomImportOrder 3 customImportOrderRules = STATIC###SPECIAL_IMPORTS###THIRD_PARTY_PACKAGE###STANDARD_JAVA_PACKAGE 4 standardPackageRegExp = (default)^(java|javax)\\. 5 thirdPartyPackageRegExp = (default).* 6 specialImportsRegExp = com.google 7 separateLineBetweenGroups = (default)true 8 sortImportsInGroupAlphabetically = true 9 10 11 */ 12 13 package com.puppycrawl.tools.checkstyle.checks.imports.customimportorder; 14 15 import javax.xml.transform.Source; 16 17 import org.w3c.dom.Node; // violation '.* wrong order. Should be in the .*group, expecting not assigned imports.*' 18 19 class InputCustomImportOrderPossibleIndexOutOfBoundsException {}