Skip to content

Commit a2f05ca

Browse files
committed
add lint ignores
1 parent 1935910 commit a2f05ca

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/test/runTest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
}

src/test/suite/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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)));

src/test/suite/markupParser.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import * as path from 'path';
66
import { parseMarkup, cssUri } from '../../markupParser';
77
import * 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

1111
const FILE_ENCODING = 'utf8';
1212

0 commit comments

Comments
 (0)