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:
parent
a5db103bb8
commit
6e0c8ab2d9
.github
.gitpod.ymlbuild.gradle.ktsgradle.propertiessrc/test/kotlin/com/github/izhangzhihao/rainbow/brackets
23
.github/ISSUE_TEMPLATE.md
vendored
23
.github/ISSUE_TEMPLATE.md
vendored
@ -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
|
||||||
```
|
```
|
||||||
|
@ -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==
|
|
||||||
|
@ -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 {
|
||||||
|
@ -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
|
||||||
|
@ -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() {
|
||||||
|
@ -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
|
||||||
|
|
||||||
|
@ -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() {
|
||||||
|
@ -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() {
|
||||||
|
@ -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
|
||||||
|
|
||||||
|
@ -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() {
|
||||||
|
@ -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() {
|
||||||
|
@ -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
|
||||||
|
|
||||||
|
@ -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() {
|
||||||
|
Loading…
Reference in New Issue
Block a user