use of com.intellij.psi.css.inspections.bugs.CssUnitlessNumberInspection in project intellij-plugins by JetBrains.
the class FlexHighlightingTest method testFlexWithCss3.
@JSTestOptions({ JSTestOption.WithCssSupportLoader, JSTestOption.WithFlexFacet })
public void testFlexWithCss3() throws Exception {
enableInspectionTool(new CssUnitlessNumberInspection());
enableInspectionTool(new CssNegativeValueInspection());
enableInspectionTool(new CssNoGenericFontNameInspection());
enableInspectionTool((LocalInspectionTool) Class.forName("org.jetbrains.w3validators.css.W3CssValidatorInspection").newInstance());
doTestFor(true, getTestName(false) + ".css");
}
Aggregations