use of com.intellij.psi.css.codeStyle.CssCodeStyleSettings in project intellij-plugins by JetBrains.
the class FlexCssCompletionTest method setUp.
@Override
protected void setUp() throws Exception {
VfsRootAccess.allowRootAccess(getTestRootDisposable(), urlToPath(convertFromUrl(FlexSchemaHandler.class.getResource("z.xsd"))), urlToPath(convertFromUrl(FlexStylesIndexableSetContributor.class.getResource("FlexStyles.as"))));
super.setUp();
myAfterCommitRunnable = null;
CodeStyleSettings globalSettings = CodeStyleSettingsManager.getSettings(getProject());
CssCodeStyleSettings settings = globalSettings.getCustomSettings(CssCodeStyleSettings.class);
settings.SPACE_AFTER_COLON = false;
CamelHumpMatcher.forceStartMatching(getTestRootDisposable());
}
Aggregations