diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index 1eacc476f..e34225dd9 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -1,3 +1,4 @@ ## Code of Conduct -This project and the corresponding community is governed by the [JetBrains Open Source and Community Code of Conduct](https://confluence.jetbrains.com/display/ALL/JetBrains+Open+Source+and+Community+Code+of+Conduct). Please make sure you read it. +This project and the corresponding community is governed by the [JetBrains Open Source and Community Code of Conduct](https://confluence.jetbrains.com/display/ALL/JetBrains+Open+Source+and+Community+Code+of+Conduct). +Please make sure you read it. diff --git a/README.md b/README.md index 11e27abe8..89568fe7a 100644 --- a/README.md +++ b/README.md @@ -6,8 +6,8 @@ [![Build](https://github.com/JetBrains/intellij-sdk-docs/workflows/Build/badge.svg)][gh:build] [![Slack](https://img.shields.io/badge/Slack-%23intellij--platform-blue)][jb:slack] -Learn how to build plugins using IntelliJ Platform SDK for the [JetBrains products][jb:products] by experimenting with -our code samples. These samples show you how features work and help you jumpstart your plugins. +Learn how to build plugins using IntelliJ Platform SDK for the [JetBrains products][jb:products] by experimenting with our code samples. +These samples show you how features work and help you jumpstart your plugins. There is also [IntelliJ Platform Plugin Template][gh:template] project available. @@ -20,15 +20,13 @@ Previous releases are made available via [tags](https://github.com/JetBrains/int Code Samples depend on the [IntelliJ Platform SDK][docs] and [Gradle][docs:gradle] as a build system. -The main plugin definition file is stored in the `plugin.xml` file, which is created according -to the [Plugin Configuration File documentation][docs:plugin.xml]. It describes definitions of the actions, extensions, -or listeners provided by the plugin. +The main plugin definition file is stored in the `plugin.xml` file, which is created according to the [Plugin Configuration File documentation][docs:plugin.xml]. +It describes definitions of the actions, extensions, or listeners provided by the plugin. ## Code Samples -In the following table, you may find all available samples provided in the separated directories as stand-alone -projects available for running with the Gradle `:runIde` task. - +In the following table, you may find all available samples provided in the separated directories as stand-alone projects available for running with the Gradle `:runIde` task. + | Code Sample | Description | | ---------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------ | | [Action Basics](./action_basics) | Action and Action Group patterns implementation, adds entries to the Tools menu. | diff --git a/_gradleCompositeBuild/settings.gradle b/_gradleCompositeBuild/settings.gradle index c808bb520..390af402e 100644 --- a/_gradleCompositeBuild/settings.gradle +++ b/_gradleCompositeBuild/settings.gradle @@ -24,4 +24,3 @@ includeBuild '../settings' includeBuild '../simple_language_plugin' includeBuild '../tool_window' includeBuild '../tree_structure_provider' - diff --git a/action_basics/README.md b/action_basics/README.md index 85d2dc7f8..a428bf23f 100644 --- a/action_basics/README.md +++ b/action_basics/README.md @@ -13,7 +13,7 @@ This Plugin registers the [`PopupDialogAction`][file:PopupDialogAction] action, Additional features of the plugin: - [Using the ``][docs:action-override] element in an `` element is demonstrated in the `plugin.xml` declaration to add the `PopupDialogAction` action directly to the `ToolsMenu`. -- [Localization of action and group][docs:action-locale] `text` and `description` attributes using a `` is demonstrated in the declaration to add a new group to the `EditorPopupMenu`. +- [Localization of action and group][docs:action-locale] `text` and `description` attributes using a `` is demonstrated in the declaration to add a new group to the `EditorPopupMenu`. ### Actions diff --git a/comparing_references_inspection/settings.gradle b/comparing_references_inspection/settings.gradle index 85de655af..92a604d5b 100644 --- a/comparing_references_inspection/settings.gradle +++ b/comparing_references_inspection/settings.gradle @@ -1,4 +1,3 @@ // Copyright 2000-2020 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. rootProject.name = 'comparing_references_inspection' - diff --git a/conditional_operator_intention/settings.gradle b/conditional_operator_intention/settings.gradle index c50116dff..2b0c087b3 100644 --- a/conditional_operator_intention/settings.gradle +++ b/conditional_operator_intention/settings.gradle @@ -1,4 +1,3 @@ // Copyright 2000-2020 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. rootProject.name = 'conditional_operator_intention' - diff --git a/editor_basics/settings.gradle b/editor_basics/settings.gradle index f299fe2ef..07d55a5c0 100644 --- a/editor_basics/settings.gradle +++ b/editor_basics/settings.gradle @@ -1,4 +1,3 @@ // Copyright 2000-2020 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. rootProject.name = 'editor' - diff --git a/facet_basics/build.gradle b/facet_basics/build.gradle index ccf24e92e..861d18ad8 100644 --- a/facet_basics/build.gradle +++ b/facet_basics/build.gradle @@ -28,4 +28,3 @@ patchPluginXml { sinceBuild = '202' untilBuild = '202.*' } - diff --git a/facet_basics/settings.gradle b/facet_basics/settings.gradle index c78e4677d..779d6e8fc 100644 --- a/facet_basics/settings.gradle +++ b/facet_basics/settings.gradle @@ -1,4 +1,3 @@ // Copyright 2000-2020 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. rootProject.name = 'facet' - diff --git a/framework_basics/settings.gradle b/framework_basics/settings.gradle index 2d5e13bc3..a9f92338b 100644 --- a/framework_basics/settings.gradle +++ b/framework_basics/settings.gradle @@ -1,4 +1,3 @@ // Copyright 2000-2020 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. rootProject.name = 'framework' - diff --git a/inspection_basics/settings.gradle b/inspection_basics/settings.gradle index e414327fc..338e03801 100644 --- a/inspection_basics/settings.gradle +++ b/inspection_basics/settings.gradle @@ -1,4 +1,3 @@ // Copyright 2000-2020 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. rootProject.name = 'inspection' - diff --git a/kotlin_demo/gradle.properties b/kotlin_demo/gradle.properties index 4548116e4..7266fc20a 100644 --- a/kotlin_demo/gradle.properties +++ b/kotlin_demo/gradle.properties @@ -1,2 +1,2 @@ # Copyright 2000-2020 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -kotlin.code.style=official \ No newline at end of file +kotlin.code.style=official diff --git a/kotlin_demo/settings.gradle b/kotlin_demo/settings.gradle index 9c9af454d..1c8c3819a 100644 --- a/kotlin_demo/settings.gradle +++ b/kotlin_demo/settings.gradle @@ -1,4 +1,3 @@ // Copyright 2000-2020 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. rootProject.name = 'kotlin' - diff --git a/live_templates/build.gradle b/live_templates/build.gradle index ec7728c5d..861d18ad8 100644 --- a/live_templates/build.gradle +++ b/live_templates/build.gradle @@ -27,4 +27,4 @@ patchPluginXml { version = project.version sinceBuild = '202' untilBuild = '202.*' -} \ No newline at end of file +} diff --git a/live_templates/settings.gradle b/live_templates/settings.gradle index 616325a23..147c11bfc 100644 --- a/live_templates/settings.gradle +++ b/live_templates/settings.gradle @@ -1,4 +1,3 @@ // Copyright 2000-2020 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. rootProject.name = 'live_templates' - diff --git a/max_opened_projects/settings.gradle b/max_opened_projects/settings.gradle index 60d0c29b4..55cbacdc2 100644 --- a/max_opened_projects/settings.gradle +++ b/max_opened_projects/settings.gradle @@ -1,4 +1,3 @@ // Copyright 2000-2020 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. rootProject.name = 'maxOpenProjects' - diff --git a/module/settings.gradle b/module/settings.gradle index 58ad5e6e4..d62bfd000 100644 --- a/module/settings.gradle +++ b/module/settings.gradle @@ -1,4 +1,3 @@ // Copyright 2000-2020 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. rootProject.name = 'module' - diff --git a/product_specific/README.md b/product_specific/README.md index d6099e0ae..ad06b89f3 100644 --- a/product_specific/README.md +++ b/product_specific/README.md @@ -1,3 +1,3 @@ ## Product Specific Code Samples -Please note, all samples in this folder must be imported into Gradle explicitly as they're not included in the default Gradle composite build. \ No newline at end of file +Please note, all samples in this folder must be imported into Gradle explicitly as they're not included in the default Gradle composite build. diff --git a/product_specific/pycharm_basics/settings.gradle b/product_specific/pycharm_basics/settings.gradle index 8ebee0383..9c6861831 100644 --- a/product_specific/pycharm_basics/settings.gradle +++ b/product_specific/pycharm_basics/settings.gradle @@ -1,4 +1,3 @@ // Copyright 2000-2020 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. rootProject.name = 'pycharm' - diff --git a/project_model/README.md b/project_model/README.md index 0cc868dcd..fe395e2df 100644 --- a/project_model/README.md +++ b/project_model/README.md @@ -3,7 +3,8 @@ ## Quickstart -Project Model Sample project provides five actions that present data extracted using `ProjectRootManager` instance in the message dialogs. Within the implemented actions, you will be able to: +Project Model Sample project provides five actions that present data extracted using `ProjectRootManager` instance in the message dialogs. +Within the implemented actions, you will be able to: - fetch libraries used in the project, - retrieve the information about the module details, - rename the used SDK, diff --git a/project_model/settings.gradle b/project_model/settings.gradle index 86a5442ae..5854737eb 100644 --- a/project_model/settings.gradle +++ b/project_model/settings.gradle @@ -1,4 +1,3 @@ // Copyright 2000-2020 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. rootProject.name = 'project_model' - diff --git a/project_view_pane/build.gradle b/project_view_pane/build.gradle index 87766b1eb..2be633770 100644 --- a/project_view_pane/build.gradle +++ b/project_view_pane/build.gradle @@ -27,4 +27,4 @@ patchPluginXml { version = project.version sinceBuild = '202' untilBuild = '202.*' -} \ No newline at end of file +} diff --git a/project_view_pane/settings.gradle b/project_view_pane/settings.gradle index 648d283b5..cb21b2daf 100644 --- a/project_view_pane/settings.gradle +++ b/project_view_pane/settings.gradle @@ -1,4 +1,3 @@ // Copyright 2000-2020 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. rootProject.name = 'project_view_pane' - diff --git a/project_wizard/build.gradle b/project_wizard/build.gradle index 87766b1eb..2be633770 100644 --- a/project_wizard/build.gradle +++ b/project_wizard/build.gradle @@ -27,4 +27,4 @@ patchPluginXml { version = project.version sinceBuild = '202' untilBuild = '202.*' -} \ No newline at end of file +} diff --git a/project_wizard/settings.gradle b/project_wizard/settings.gradle index 9c97cc1ae..d74cb9bfa 100644 --- a/project_wizard/settings.gradle +++ b/project_wizard/settings.gradle @@ -1,4 +1,3 @@ // Copyright 2000-2020 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. rootProject.name = 'projectWizard' - diff --git a/run_configuration/src/main/java/org/jetbrains/sdk/runConfiguration/DemoSettingsEditor.java b/run_configuration/src/main/java/org/jetbrains/sdk/runConfiguration/DemoSettingsEditor.java index 6c61b0ebe..247be2aef 100644 --- a/run_configuration/src/main/java/org/jetbrains/sdk/runConfiguration/DemoSettingsEditor.java +++ b/run_configuration/src/main/java/org/jetbrains/sdk/runConfiguration/DemoSettingsEditor.java @@ -34,4 +34,3 @@ public class DemoSettingsEditor extends SettingsEditor { myScriptName.setComponent(new TextFieldWithBrowseButton()); } } - diff --git a/settings/settings.gradle b/settings/settings.gradle index 4be28a012..bd70031ec 100644 --- a/settings/settings.gradle +++ b/settings/settings.gradle @@ -1,2 +1 @@ rootProject.name = 'settings' - diff --git a/simple_language_plugin/settings.gradle b/simple_language_plugin/settings.gradle index 87215c406..ec43b68df 100644 --- a/simple_language_plugin/settings.gradle +++ b/simple_language_plugin/settings.gradle @@ -1,4 +1,3 @@ // Copyright 2000-2020 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. rootProject.name = 'simple_language_plugin' - diff --git a/theme_basics/resources/Lightning.xml b/theme_basics/resources/Lightning.xml index 124c83443..4d73a6eef 100644 --- a/theme_basics/resources/Lightning.xml +++ b/theme_basics/resources/Lightning.xml @@ -196,4 +196,4 @@ - \ No newline at end of file +