Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1172,7 +1172,8 @@ private suspend fun lookForJunkFiles(context: BuildContext, paths: List<Path>) {
internal suspend fun buildAdditionalAuthoringArtifacts(productRunner: IntellijProductRunner, context: BuildContext) {
context.executeStep(spanBuilder("build authoring assets"), BuildOptions.DOC_AUTHORING_ASSETS_STEP) {
val commands = listOf(
Pair("inspectopedia-generator", "inspections-${context.applicationInfo.productCode.lowercase()}"),
// inspections are disabled in rebased
//Pair("inspectopedia-generator", "inspections-${context.applicationInfo.productCode.lowercase()}"),
Pair("keymap", "keymap-${context.applicationInfo.productCode.lowercase()}")
)
val temporaryBuildDirectory = context.paths.tempDir
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,8 @@ object CommunityModuleSets {
module("intellij.libraries.microba")
module("intellij.platform.diagnostic.freezeAnalyzer")
module("intellij.platform.warmup")
module("intellij.platform.inspect")
// inspections, disabled in rebased
//module("intellij.platform.inspect")
module("intellij.settingsSync.core")
module("intellij.spellchecker")
module("intellij.spellchecker.xml")
Expand Down
3 changes: 2 additions & 1 deletion platform/platform-resources/src/META-INF/LangExtensions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
<idea-plugin>
<extensions defaultExtensionNs="com.intellij">
<appStarter id="traverseUI" implementation="com.intellij.ide.ui.search.TraverseUIStarter" internal="true"/>
<appStarter id="format" implementation="com.intellij.formatting.commandLine.FormatterStarter" bundle="messages.CodeStyleBundle" key="formatter.help"/>
<!-- disabled in rebased -->
<!--<appStarter id="format" implementation="com.intellij.formatting.commandLine.FormatterStarter" bundle="messages.CodeStyleBundle" key="formatter.help"/>-->
<appStarter id="ideScript" implementation="com.intellij.ide.script.IdeScriptStarter" internal="true"/>

<applicationService serviceInterface="com.intellij.util.Queries"
Expand Down
Loading