Skip to content

Commit

Permalink
Workaround for eslint/flow/etc
Browse files Browse the repository at this point in the history
  • Loading branch information
Janos Gyerik committed Dec 1, 2016
1 parent 246b39e commit 3cba1d4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ intellij {
publish {
pluginId '7973'
}
type 'IC'
type 'IU'
}

protobuf {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version=2.5-SNAPSHOT
version=2.5-MX-eslint-flow-workaround
org.gradle.jvmargs=-XX:MaxPermSize=256M
sonarlintCoreVersion=2.6.0.136

2 changes: 1 addition & 1 deletion src/main/java/org/sonarlint/intellij/SonarApplication.java
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public class SonarApplication implements ApplicationComponent {
public void initComponent() {
plugin = PluginManager.getPlugin(PluginId.getId("org.sonarlint.idea"));
Language.getRegisteredLanguages().stream()
.filter(languages::contains)
.filter(lang -> languages.contains(lang.getID()))
.forEach(this::registerExternalAnnotatorFor);
registerNotifications();
}
Expand Down

0 comments on commit 3cba1d4

Please sign in to comment.