File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import * as vscode from 'vscode' ;
22import open from 'open' ;
33
4+ import { emitter , ISupportedFiles } from '@deepcode/tsc' ;
45import { ExtensionInterface } from '../interfaces/DeepCodeInterfaces' ;
56import DeepCodeLib from './lib/modules/DeepCodeLib' ;
67import createFileWatcher from './lib/watchers/FilesWatcher' ;
7- import { emitter , ISupportedFiles } from '@deepcode/tsc' ;
88
99import {
1010 DEEPCODE_START_COMMAND ,
@@ -150,7 +150,7 @@ class DeepCodeExtension extends DeepCodeLib implements ExtensionInterface {
150150 }
151151
152152 onSupportedFilesLoaded ( data : ISupportedFiles | null ) {
153- const msg = ! ! data ? 'Ignore rules loading' : 'Loading' ;
153+ const msg = data ? 'Ignore rules loading' : 'Loading' ;
154154
155155 this . updateStatus ( DEEPCODE_ANALYSIS_STATUS . FILTERS , msg ) ;
156156
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ abstract class LoginModule extends ReportModule implements LoginModuleInterface
4242 }
4343
4444 const response = await startSession ( { baseURL : this . baseURL , source : this . source } ) ;
45- if ( response . type == 'error' ) {
45+ if ( response . type === 'error' ) {
4646 throw new Error ( errorsLogs . login ) ;
4747 }
4848
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ import { runTests } from 'vscode-test';
44
55async function main ( ) {
66 try {
7-
87 console . log ( 'STARTING TESTS' ) ;
98
109 // The folder containing the Extension Manifest package.json
You can’t perform that action at this time.
0 commit comments