1
0
mirror of https://github.com/chylex/IntelliJ-Rainbow-Brackets.git synced 2025-05-05 04:34:03 +02:00

run verifier with IIU-2021.2 & remove dead vscode plugin in .gitpod.yml & bump kotlintest to kotest

This commit is contained in:
张志豪 2021-08-06 11:54:39 +08:00
parent a5db103bb8
commit 6e0c8ab2d9
13 changed files with 23 additions and 26 deletions

View File

@ -9,7 +9,7 @@ Please search on the [issues](https://github.com/izhangzhihao/intellij-rainbow-b
- [ ] If you are submitting a feature request, please do consider donating us on [Open Collective](https://opencollective.com/intellij-rainbow-brackets) Or by AliPay/WeChatPay. - [ ] If you are submitting a feature request, please do consider donating us on [Open Collective](https://opencollective.com/intellij-rainbow-brackets) Or by AliPay/WeChatPay.
- [ ] This issue/feature request is not reported before. - [ ] This issue/feature request is not reported before.
## Your programming language(s) ## Your programming languages
## Expected Behavior ## Expected Behavior
* If you're describing a bug, tell us what should happen * If you're describing a bug, tell us what should happen
@ -33,17 +33,18 @@ Please provide code snippet for reproduce bugs.
* NOTE: If you are going to report a bug but WITHOUT your env information, your issue might be closed directly. * NOTE: If you are going to report a bug but WITHOUT your env information, your issue might be closed directly.
``` ```
IntelliJ IDEA 2020.2 (Ultimate Edition) IntelliJ IDEA 2021.2 (Ultimate Edition)
Build #IU-202.6397.94, built on July 27, 2020 Build #IU-212.4746.92, built on July 27, 2021
Licensed to IntelliJ Rainbow Brackets / Zhang Zhihao Licensed to IntelliJ Rainbow Brackets / Zhang Zhihao
Subscription is active until February 19, 2021 Subscription is active until February 3, 2022.
For non-commercial open source development only. For non-commercial open source development only.
Runtime version: 11.0.7+10-b944.20 x86_64 Runtime version: 11.0.11+9-b1504.13 x86_64
VM: OpenJDK 64-Bit Server VM by JetBrains s.r.o. VM: OpenJDK 64-Bit Server VM by JetBrains s.r.o.
macOS 10.15.5 macOS 11.4
GC: ParNew, ConcurrentMarkSweep GC: G1 Young Generation, G1 Old Generation
Memory: 4029M Memory: 4096M
Cores: 8 Cores: 16
Registry: ide.tooltip.initialDelay=900, ide.balloon.shadow.size=0 Registry: ide.tooltip.initialDelay=900, ide.balloon.shadow.size=0, scala.erase.compiler.process.jdk.once=false
Non-Bundled Plugins: com.chrisrm.idea.MaterialThemeUI, izhangzhihao.rainbow.brackets Non-Bundled Plugins: com.intellij.properties.bundle.editor (212.4746.57), com.markskelton.one-dark-theme (5.3.0), lermitage.intellij.extra.icons (1.59.0.203), org.nik.presentation-assistant (1.0.9), kotest-plugin-intellij (1.1.36-IC-2021.1), Pythonid (212.4746.96), org.intellij.scala (2021.2.15), izhangzhihao.rainbow.brackets (6.19), com.intellij.bigdatatools (212.4037.55)
Kotlin: 212-1.5.10-release-IJ4746.92
``` ```

View File

@ -2,7 +2,3 @@ image:
file: .gitpod.Dockerfile file: .gitpod.Dockerfile
tasks: tasks:
- init: gradle compileKotlin - init: gradle compileKotlin
vscode:
extensions:
- mathiasfrohlich.Kotlin@1.7.1:zRxka5i+6/G9r7KC3xmyXQ==
- fwcd.kotlin@0.2.11:moh8IDanzsIlhtK2IeiLmQ==

View File

@ -82,7 +82,7 @@ dependencies {
// exclude("gson") // exclude("gson")
//} //}
compileOnly(fileTree("libs")) compileOnly(fileTree("libs"))
testImplementation("io.kotlintest:kotlintest:2.0.7") testImplementation("io.kotest:kotest-assertions-core:4.6.1")
} }
java { java {

View File

@ -9,4 +9,4 @@ kotlinTargetVersion=1.4
version=6.19 version=6.19
publishChannels=Stable publishChannels=Stable
kotlin.stdlib.default.dependency=false kotlin.stdlib.default.dependency=false
pluginVerifierIdeVersions=WS-2020.3, IIC-2021.1 pluginVerifierIdeVersions=WS-2020.3, IIC-2021.1, IIU-2021.2

View File

@ -3,7 +3,7 @@ package com.github.izhangzhihao.rainbow.brackets
import com.intellij.psi.PsiDocumentManager import com.intellij.psi.PsiDocumentManager
import com.intellij.testFramework.fixtures.LightJavaCodeInsightFixtureTestCase import com.intellij.testFramework.fixtures.LightJavaCodeInsightFixtureTestCase
import com.jetbrains.lang.dart.DartFileType import com.jetbrains.lang.dart.DartFileType
import io.kotlintest.matchers.shouldBe import io.kotest.matchers.shouldBe
class RainbowDartTest : LightJavaCodeInsightFixtureTestCase() { class RainbowDartTest : LightJavaCodeInsightFixtureTestCase() {
fun testRainbowForDart() { fun testRainbowForDart() {

View File

@ -2,7 +2,7 @@ package com.github.izhangzhihao.rainbow.brackets
import com.intellij.psi.PsiDocumentManager import com.intellij.psi.PsiDocumentManager
import com.intellij.testFramework.fixtures.LightJavaCodeInsightFixtureTestCase import com.intellij.testFramework.fixtures.LightJavaCodeInsightFixtureTestCase
import io.kotlintest.matchers.shouldBe import io.kotest.matchers.shouldBe
import org.intellij.lang.annotations.Language import org.intellij.lang.annotations.Language
import org.jetbrains.plugins.groovy.GroovyFileType import org.jetbrains.plugins.groovy.GroovyFileType

View File

@ -7,7 +7,7 @@ import com.intellij.lang.javascript.TypeScriptFileType
import com.intellij.openapi.extensions.PluginId import com.intellij.openapi.extensions.PluginId
import com.intellij.psi.PsiDocumentManager import com.intellij.psi.PsiDocumentManager
import com.intellij.testFramework.fixtures.LightJavaCodeInsightFixtureTestCase import com.intellij.testFramework.fixtures.LightJavaCodeInsightFixtureTestCase
import io.kotlintest.matchers.shouldBe import io.kotest.matchers.shouldBe
import org.intellij.lang.annotations.Language import org.intellij.lang.annotations.Language
class RainbowJavaScriptTest : LightJavaCodeInsightFixtureTestCase() { class RainbowJavaScriptTest : LightJavaCodeInsightFixtureTestCase() {

View File

@ -4,7 +4,7 @@ import com.github.izhangzhihao.rainbow.brackets.settings.RainbowSettings
import com.intellij.ide.highlighter.JavaFileType import com.intellij.ide.highlighter.JavaFileType
import com.intellij.psi.PsiDocumentManager import com.intellij.psi.PsiDocumentManager
import com.intellij.testFramework.fixtures.LightJavaCodeInsightFixtureTestCase import com.intellij.testFramework.fixtures.LightJavaCodeInsightFixtureTestCase
import io.kotlintest.matchers.shouldBe import io.kotest.matchers.shouldBe
import org.intellij.lang.annotations.Language import org.intellij.lang.annotations.Language
class RainbowJavaTest : LightJavaCodeInsightFixtureTestCase() { class RainbowJavaTest : LightJavaCodeInsightFixtureTestCase() {

View File

@ -2,7 +2,7 @@ package com.github.izhangzhihao.rainbow.brackets
import com.intellij.psi.PsiDocumentManager import com.intellij.psi.PsiDocumentManager
import com.intellij.testFramework.fixtures.LightJavaCodeInsightFixtureTestCase import com.intellij.testFramework.fixtures.LightJavaCodeInsightFixtureTestCase
import io.kotlintest.matchers.shouldBe import io.kotest.matchers.shouldBe
import org.intellij.lang.annotations.Language import org.intellij.lang.annotations.Language
import org.jetbrains.kotlin.idea.KotlinFileType import org.jetbrains.kotlin.idea.KotlinFileType

View File

@ -3,7 +3,7 @@ package com.github.izhangzhihao.rainbow.brackets
import com.intellij.psi.PsiDocumentManager import com.intellij.psi.PsiDocumentManager
import com.intellij.testFramework.fixtures.LightJavaCodeInsightFixtureTestCase import com.intellij.testFramework.fixtures.LightJavaCodeInsightFixtureTestCase
import com.jetbrains.php.lang.PhpFileType import com.jetbrains.php.lang.PhpFileType
import io.kotlintest.matchers.shouldBe import io.kotest.matchers.shouldBe
class RainbowPHPTest : LightJavaCodeInsightFixtureTestCase() { class RainbowPHPTest : LightJavaCodeInsightFixtureTestCase() {
fun testRainbowForPHP() { fun testRainbowForPHP() {

View File

@ -4,7 +4,7 @@ import com.intellij.ide.plugins.PluginManagerCore
import com.intellij.openapi.extensions.PluginId import com.intellij.openapi.extensions.PluginId
import com.intellij.psi.PsiDocumentManager import com.intellij.psi.PsiDocumentManager
import com.intellij.testFramework.fixtures.LightJavaCodeInsightFixtureTestCase import com.intellij.testFramework.fixtures.LightJavaCodeInsightFixtureTestCase
import io.kotlintest.matchers.shouldBe import io.kotest.matchers.shouldBe
import org.jetbrains.plugins.ruby.ruby.lang.RubyFileType import org.jetbrains.plugins.ruby.ruby.lang.RubyFileType
class RainbowRubyTest : LightJavaCodeInsightFixtureTestCase() { class RainbowRubyTest : LightJavaCodeInsightFixtureTestCase() {

View File

@ -3,7 +3,7 @@ package com.github.izhangzhihao.rainbow.brackets
import com.github.izhangzhihao.rainbow.brackets.settings.RainbowSettings import com.github.izhangzhihao.rainbow.brackets.settings.RainbowSettings
import com.intellij.psi.PsiDocumentManager import com.intellij.psi.PsiDocumentManager
import com.intellij.testFramework.fixtures.LightJavaCodeInsightFixtureTestCase import com.intellij.testFramework.fixtures.LightJavaCodeInsightFixtureTestCase
import io.kotlintest.matchers.shouldBe import io.kotest.matchers.shouldBe
import org.intellij.lang.annotations.Language import org.intellij.lang.annotations.Language
import org.jetbrains.plugins.scala.ScalaFileType import org.jetbrains.plugins.scala.ScalaFileType

View File

@ -4,7 +4,7 @@ import com.github.izhangzhihao.rainbow.brackets.settings.RainbowSettings
import com.intellij.ide.highlighter.XmlFileType import com.intellij.ide.highlighter.XmlFileType
import com.intellij.psi.PsiDocumentManager import com.intellij.psi.PsiDocumentManager
import com.intellij.testFramework.fixtures.LightJavaCodeInsightFixtureTestCase import com.intellij.testFramework.fixtures.LightJavaCodeInsightFixtureTestCase
import io.kotlintest.matchers.shouldBe import io.kotest.matchers.shouldBe
import org.intellij.lang.annotations.Language import org.intellij.lang.annotations.Language
class RainbowXMLTest : LightJavaCodeInsightFixtureTestCase() { class RainbowXMLTest : LightJavaCodeInsightFixtureTestCase() {