Skip to content

Commit

Permalink
Remove warning about clj-kondo extension
Browse files Browse the repository at this point in the history
Close #1091
  • Loading branch information
bpringe committed Mar 31, 2021
1 parent 5d796e2 commit 0a65e76
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
Changes to Calva.

## [Unreleased]
- [Remove warning about clj-kondo extension](https://github.com/BetterThanTomorrow/calva/issues/1091)

## [2.0.183] - 2021-03-30
- [Stop printing to the output window when all evaluations are interrupted](https://github.com/BetterThanTomorrow/calva/issues/978)
Expand Down
5 changes: 0 additions & 5 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ async function activate(context: vscode.ExtensionContext) {
const pareEditExtension = vscode.extensions.getExtension('cospaia.paredit-revived');
const cwExtension = vscode.extensions.getExtension('tonsky.clojure-warrior');
const vimExtension = vscode.extensions.getExtension('vscodevim.vim');
const cljKondoExtension = vscode.extensions.getExtension('borkdude.clj-kondo');
const cwConfig = vscode.workspace.getConfiguration('clojureWarrior');
const customCljsRepl = config.getConfig().customCljsRepl;
const replConnectSequences = config.getConfig().replConnectSequences;
Expand Down Expand Up @@ -118,10 +117,6 @@ async function activate(context: vscode.ExtensionContext) {

state.setExtensionContext(context);

if (cljKondoExtension) {
vscode.window.showWarningMessage("The clj-kondo extension is detected. You will see duplicate linting reports in some cases. Please uninstall the clj-kondo extension.", "Got it!");
}

if (!fmtExtension) {
try {
fmt.activate(context);
Expand Down

0 comments on commit 0a65e76

Please sign in to comment.