File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ async function main() {
1616 // Download VS Code, unzip it and run the integration test
1717 await runTests ( { extensionDevelopmentPath, extensionTestsPath } ) ;
1818 } catch ( err ) {
19- console . error ( 'Failed to run tests' ) ;
19+ console . error ( 'Failed to run tests' ) ; // eslint-disable-line no-console
2020 process . exit ( 1 ) ;
2121 }
2222}
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ export function run(): Promise<void> {
1616
1717 const files = globSync ( '**/**.test.js' , { cwd : testsRoot } )
1818
19- console . log ( files ) ;
19+ console . log ( files ) ; // eslint-disable-line no-console
2020
2121 // Add files to the test suite
2222 files . forEach ( ( f : string ) => mocha . addFile ( path . resolve ( testsRoot , f ) ) ) ;
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import * as path from 'path';
66import { parseMarkup , cssUri } from '../../markupParser' ;
77import * as fs from 'fs' ;
88
9- const HTML_FORMATTER = require ( 'html-formatter' ) ;
9+ const HTML_FORMATTER = require ( 'html-formatter' ) ; // eslint-disable-line @typescript-eslint/no-var-requires
1010
1111const FILE_ENCODING = 'utf8' ;
1212
You can’t perform that action at this time.
0 commit comments