Skip to content

Commit e90defe

Browse files
sudhirvermamohitsuman
authored andcommittedNov 30, 2022
Fix eslint error
1 parent 6690814 commit e90defe

14 files changed

+118
-113
lines changed
 

‎build/install-vscode.ts

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
import cp = require('child_process');
77
import path = require('path');
88
import { platform } from 'os';
9+
// eslint-disable-next-line @typescript-eslint/no-var-requires
910
const downloadAndUnzipVSCode = require('vscode-test').downloadAndUnzipVSCode;
1011
downloadAndUnzipVSCode().then((executable: string) => {
1112
if (platform() === 'darwin') {

‎src/cluster-version.ts

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
* Copyright (c) Red Hat, Inc. All rights reserved.
33
* Licensed under the MIT License. See LICENSE file in the project root for license information.
44
*-----------------------------------------------------------------------------------------------*/
5-
/* eslint-disable @typescript-eslint/camelcase */
65

76

87
import { cli } from './cli';

‎src/pipeline/preview.ts

+1
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,7 @@ export class PipelinePreview extends Disposable {
207207
}
208208
}
209209

210+
// eslint-disable-next-line @typescript-eslint/ban-types
210211
private postMessage(msg: {}): void {
211212
if (!this.disposed) {
212213
this.editor.webview.postMessage(msg);

‎src/tekton/triggertype.ts

+1
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ export interface PipelineResource {
102102
export interface PipelineWorkspace extends Param {
103103
type: string;
104104
data?: {
105+
// eslint-disable-next-line @typescript-eslint/ban-types
105106
[volumeType: string]: VolumeTypeSecret | VolumeTypeConfigMaps | VolumeTypePVC | {};
106107
};
107108
}

‎src/tkn.ts

+1
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ export interface Tkn {
7373
getClusterTasks(clustertask?: TektonNode): Promise<TektonNode[]>;
7474
getRawClusterTasks(): Promise<TknTask[]>;
7575
execute(command: CliCommand, cwd?: string, fail?: boolean): Promise<CliExitData>;
76+
// eslint-disable-next-line @typescript-eslint/ban-types
7677
executeWatch(command: CliCommand, opts?: {}): WatchProcess;
7778
executeInTerminal(command: CliCommand, resourceName?: string, cwd?: string): void;
7879
getTaskRunsForTasks(task: TektonNode): Promise<TektonNode[]>;

‎src/util/watchResources.ts

+1
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ export class WatchResources {
5858
}
5959
}
6060

61+
// eslint-disable-next-line @typescript-eslint/ban-types
6162
async watchCommand(resourceList: string[], resourceUidAtStart: {}): Promise<void> {
6263
for (const resource of resourceList) {
6364
await this.collectResourceUidAtStart(resource, resourceUidAtStart);

‎src/webview/common/list-widget.ts

-5
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,6 @@ import './list.css';
66
import { createDiv } from './dom-util';
77
import { BaseWidget, Listener, Widget } from './widget';
88

9-
interface SizeAndPosition {
10-
top: number;
11-
width: number;
12-
}
13-
149
export abstract class ListWidget<T> extends BaseWidget {
1510
protected itemListChangedListener: Listener<T[]> | undefined;
1611

‎src/yaml-support/tkn-code-actions.ts

+1
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,7 @@ class PipelineCodeActionProvider implements vscode.CodeActionProvider {
204204
content = lines.join('\n');
205205

206206
const taskPart = jsYaml.load(content);
207+
// eslint-disable-next-line @typescript-eslint/ban-types
207208
let metadataPart: {} = undefined;
208209
if (taskPart.metadata) {
209210
metadataPart = taskPart.metadata;

‎src/yaml-support/tkn-definition-providers.ts

+1
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ export class PipelineDefinitionProvider implements TknTypeDefinitionProvider {
8282

8383
private findResourceDeclaration(resName: string, doc: TknDocument): TknElement | undefined {
8484
const pipeline = doc.getChildren<Pipeline>();
85+
// eslint-disable-next-line no-unsafe-optional-chaining
8586
for (const param of pipeline.spec.resources?.getChildren()) {
8687
if (param.name.value === resName) {
8788
return param.name;

‎src/yaml-support/tkn-yaml-scheme-generator.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export function generateScheme(vsDocument: vscode.TextDocument, schemaPath: stri
4545
}
4646

4747

48-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
48+
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/ban-types
4949
function injectTaskSnippets(templateObj: any, snippets: Snippet<{}>[]): {} {
5050
snippets.push({
5151
label: 'inline task',
@@ -66,7 +66,7 @@ function injectTaskSnippets(templateObj: any, snippets: Snippet<{}>[]): {} {
6666
return templateObj;
6767
}
6868

69-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
69+
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/ban-types
7070
function injectTasksName(templateObj: any, tasks: string[], tasksRef: string[]): {} {
7171
templateObj.definitions.PipelineTask.properties.runAfter.items.enum = tasks;
7272

@@ -78,7 +78,7 @@ function injectTasksName(templateObj: any, tasks: string[], tasksRef: string[]):
7878
return templateObj;
7979
}
8080

81-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
81+
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/ban-types
8282
function injectResourceName(templateObj: any, resNames: string[]): {} {
8383
if (resNames && resNames.length > 0) {
8484
templateObj.definitions.PipelineTaskInputResource.properties.resource.enum = resNames;
@@ -89,7 +89,7 @@ function injectResourceName(templateObj: any, resNames: string[]): {} {
8989
}
9090

9191

92-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
92+
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/ban-types
9393
function injectMarkdownDescription(templateObj: any): {} {
9494
templateObj.definitions.Pipeline.properties.apiVersion.markdownDescription = 'Specifies the API version, for example `tekton.dev/v1beta1`. [more](https://kubernetes.io/docs/concepts/overview/working-with-objects/kubernetes-objects/#required-fields)';
9595
templateObj.definitions.Pipeline.properties.kind.markdownDescription = 'Identifies this resource object as a `Pipeline` object. [more](https://kubernetes.io/docs/concepts/overview/working-with-objects/kubernetes-objects/#required-fields)';

‎test/coverage.ts

+103-103
Original file line numberDiff line numberDiff line change
@@ -27,126 +27,126 @@ export interface TestRunnerOptions {
2727

2828
export class CoverageRunner {
2929

30-
private coverageVar = `$$cov_${new Date().getTime()}$$`;
31-
private transformer: any = undefined;
32-
private matchFn: any = undefined;
33-
private instrumenter: any = undefined;
34-
35-
constructor(private options: TestRunnerOptions, private testsRoot: string) {
36-
if (!options.relativeSourcePath) {
37-
return;
38-
}
30+
private coverageVar = `$$cov_${new Date().getTime()}$$`;
31+
private transformer: any = undefined;
32+
private matchFn: any = undefined;
33+
private instrumenter: any = undefined;
34+
35+
constructor(private options: TestRunnerOptions, private testsRoot: string) {
36+
if (!options.relativeSourcePath) {
37+
return;
3938
}
39+
}
4040

41-
public setupCoverage(): void {
42-
// Set up Code Coverage, hooking require so that instrumented code is returned
43-
// eslint-disable-next-line @typescript-eslint/no-this-alias
44-
const self = this;
45-
self.instrumenter = new istanbul.Instrumenter({ coverageVariable: self.coverageVar });
46-
const sourceRoot = paths.join(self.testsRoot, self.options.relativeSourcePath);
47-
48-
// Glob source files
49-
const srcFiles = glob.sync('**/**.js', {
50-
cwd: sourceRoot,
51-
ignore: self.options.ignorePatterns
52-
});
53-
54-
// Create a match function - taken from the run-with-cover.js in istanbul.
55-
// eslint-disable-next-line @typescript-eslint/no-var-requires
56-
const decache = require('decache');
57-
const fileMap: any = {};
58-
srcFiles.forEach((file) => {
59-
const fullPath = paths.join(sourceRoot, file);
60-
fileMap[fullPath] = true;
61-
62-
// On Windows, extension is loaded pre-test hooks and this mean we lose
63-
// our chance to hook the Require call. In order to instrument the code
64-
// we have to decache the JS file so on next load it gets instrumented.
65-
// This doesn't impact tests, but is a concern if we had some integration
66-
// tests that relied on VSCode accessing our module since there could be
67-
// some shared global state that we lose.
68-
decache(fullPath);
69-
});
70-
71-
self.matchFn = (file: string): boolean => fileMap[file];
72-
self.matchFn.files = Object.keys(fileMap);
73-
74-
// Hook up to the Require function so that when this is called, if any of our source files
75-
// are required, the instrumented version is pulled in instead. These instrumented versions
76-
// write to a global coverage variable with hit counts whenever they are accessed
77-
self.transformer = self.instrumenter.instrumentSync.bind(self.instrumenter);
78-
const hookOpts = { verbose: false, extensions: ['.js'] };
79-
istanbul.hook.hookRequire(self.matchFn, self.transformer, hookOpts);
80-
81-
// initialize the global variable to stop mocha from complaining about leaks
82-
global[self.coverageVar] = {};
83-
}
41+
public setupCoverage(): void {
42+
// Set up Code Coverage, hooking require so that instrumented code is returned
43+
// eslint-disable-next-line @typescript-eslint/no-this-alias
44+
const self = this;
45+
self.instrumenter = new istanbul.Instrumenter({ coverageVariable: self.coverageVar });
46+
const sourceRoot = paths.join(self.testsRoot, self.options.relativeSourcePath);
47+
48+
// Glob source files
49+
const srcFiles = glob.sync('**/**.js', {
50+
cwd: sourceRoot,
51+
ignore: self.options.ignorePatterns
52+
});
53+
54+
// Create a match function - taken from the run-with-cover.js in istanbul.
55+
// eslint-disable-next-line @typescript-eslint/no-var-requires
56+
const decache = require('decache');
57+
const fileMap: any = {};
58+
srcFiles.forEach((file) => {
59+
const fullPath = paths.join(sourceRoot, file);
60+
fileMap[fullPath] = true;
61+
62+
// On Windows, extension is loaded pre-test hooks and this mean we lose
63+
// our chance to hook the Require call. In order to instrument the code
64+
// we have to decache the JS file so on next load it gets instrumented.
65+
// This doesn't impact tests, but is a concern if we had some integration
66+
// tests that relied on VSCode accessing our module since there could be
67+
// some shared global state that we lose.
68+
decache(fullPath);
69+
});
70+
71+
self.matchFn = (file: string): boolean => fileMap[file];
72+
self.matchFn.files = Object.keys(fileMap);
73+
74+
// Hook up to the Require function so that when this is called, if any of our source files
75+
// are required, the instrumented version is pulled in instead. These instrumented versions
76+
// write to a global coverage variable with hit counts whenever they are accessed
77+
self.transformer = self.instrumenter.instrumentSync.bind(self.instrumenter);
78+
const hookOpts = { verbose: false, extensions: ['.js'] };
79+
istanbul.hook.hookRequire(self.matchFn, self.transformer, hookOpts);
80+
81+
// initialize the global variable to stop mocha from complaining about leaks
82+
global[self.coverageVar] = {};
83+
}
8484

85-
/**
85+
/**
8686
* Writes a coverage report.
8787
* Note that as this is called in the process exit callback, all calls must be synchronous.
8888
*
8989
* @returns {void}
9090
*
9191
* @memberOf CoverageRunner
9292
*/
93-
public reportCoverage(): void {
94-
// eslint-disable-next-line @typescript-eslint/no-this-alias
95-
const self = this;
96-
istanbul.hook.unhookRequire();
97-
let cov: any;
98-
if (typeof global[self.coverageVar] === 'undefined' || Object.keys(global[self.coverageVar]).length === 0) {
99-
console.error('No coverage information was collected, exit without writing coverage information');
93+
public reportCoverage(): void {
94+
// eslint-disable-next-line @typescript-eslint/no-this-alias
95+
const self = this;
96+
istanbul.hook.unhookRequire();
97+
let cov: any;
98+
if (typeof global[self.coverageVar] === 'undefined' || Object.keys(global[self.coverageVar]).length === 0) {
99+
console.error('No coverage information was collected, exit without writing coverage information');
100+
return;
101+
} else {
102+
cov = global[self.coverageVar];
103+
}
104+
105+
// TODO consider putting this under a conditional flag
106+
// Files that are not touched by code ran by the test runner is manually instrumented, to
107+
// illustrate the missing coverage.
108+
self.matchFn.files.forEach((file: any) => {
109+
if (cov[file]) {
100110
return;
101-
} else {
102-
cov = global[self.coverageVar];
103111
}
112+
self.transformer(fs.readFileSync(file, 'utf-8'), file);
104113

105-
// TODO consider putting this under a conditional flag
106-
// Files that are not touched by code ran by the test runner is manually instrumented, to
107-
// illustrate the missing coverage.
108-
self.matchFn.files.forEach((file: any) => {
109-
if (cov[file]) {
110-
return;
111-
}
112-
self.transformer(fs.readFileSync(file, 'utf-8'), file);
113-
114-
// When instrumenting the code, istanbul will give each FunctionDeclaration a value of 1 in coverState.s,
115-
// presumably to compensate for function hoisting. We need to reset this, as the function was not hoisted,
116-
// as it was never loaded.
117-
Object.keys(self.instrumenter.coverState.s).forEach((key) => {
118-
self.instrumenter.coverState.s[key] = 0;
119-
});
120-
121-
cov[file] = self.instrumenter.coverState;
114+
// When instrumenting the code, istanbul will give each FunctionDeclaration a value of 1 in coverState.s,
115+
// presumably to compensate for function hoisting. We need to reset this, as the function was not hoisted,
116+
// as it was never loaded.
117+
Object.keys(self.instrumenter.coverState.s).forEach((key) => {
118+
self.instrumenter.coverState.s[key] = 0;
122119
});
123120

124-
// TODO Allow config of reporting directory with
125-
const reportingDir = paths.join(self.testsRoot, self.options.relativeCoverageDir);
126-
const includePid = self.options.includePid;
127-
const pidExt = includePid ? ('-' + process.pid) : '';
128-
const coverageFile = paths.resolve(reportingDir, `coverage${pidExt}.json`);
121+
cov[file] = self.instrumenter.coverState;
122+
});
129123

130-
// yes, do this again since some test runners could clean the dir initially created
131-
_mkDirIfExists(reportingDir);
124+
// TODO Allow config of reporting directory with
125+
const reportingDir = paths.join(self.testsRoot, self.options.relativeCoverageDir);
126+
const includePid = self.options.includePid;
127+
const pidExt = includePid ? ('-' + process.pid) : '';
128+
const coverageFile = paths.resolve(reportingDir, `coverage${pidExt}.json`);
132129

133-
fs.writeFileSync(coverageFile, JSON.stringify(cov), 'utf8');
130+
// yes, do this again since some test runners could clean the dir initially created
131+
_mkDirIfExists(reportingDir);
134132

135-
const remappedCollector = remapIstanbul.remap(cov, {
136-
warn: (warning: any) => {
137-
// We expect some warnings as any JS file without a typescript mapping will cause this.
138-
// By default, we'll skip printing these to the console as it clutters it up
139-
if (self.options.verbose) {
140-
console.warn(warning);
141-
}
142-
}
143-
});
133+
fs.writeFileSync(coverageFile, JSON.stringify(cov), 'utf8');
144134

145-
const reporter = new istanbul.Reporter(undefined, reportingDir);
146-
const reportTypes = (self.options.reports instanceof Array) ? self.options.reports : ['lcov'];
147-
reporter.addAll(reportTypes);
148-
reporter.write(remappedCollector, true, () => {
149-
console.log(`reports written to ${reportingDir}`);
150-
});
151-
}
135+
const remappedCollector = remapIstanbul.remap(cov, {
136+
warn: (warning: any) => {
137+
// We expect some warnings as any JS file without a typescript mapping will cause this.
138+
// By default, we'll skip printing these to the console as it clutters it up
139+
if (self.options.verbose) {
140+
console.warn(warning);
141+
}
142+
}
143+
});
144+
145+
const reporter = new istanbul.Reporter(undefined, reportingDir);
146+
const reportTypes = (self.options.reports instanceof Array) ? self.options.reports : ['lcov'];
147+
reporter.addAll(reportTypes);
148+
reporter.write(remappedCollector, true, () => {
149+
console.log(`reports written to ${reportingDir}`);
150+
});
151+
}
152152
}

‎test/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55

66
'use strict';
77

8+
// eslint-disable-next-line @typescript-eslint/no-var-requires
89
require('source-map-support').install();
910

1011
/* eslint-disable @typescript-eslint/no-explicit-any */

‎test/single-test-run.ts

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ if (!tty.getWindowSize) {
1616
};
1717
}
1818

19+
// eslint-disable-next-line @typescript-eslint/ban-types
1920
const config: {} = {
2021
ui: 'tdd',
2122
timeout: 15000,
@@ -25,6 +26,7 @@ const config: {} = {
2526

2627
const mocha = new Mocha(config);
2728

29+
// eslint-disable-next-line @typescript-eslint/ban-types
2830
export function run(testsRoots: string, cb: (error: {}, failures?: number) => void): void {
2931

3032
const testsRoot = path.resolve(__dirname);

‎test/tkn.test.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1187,6 +1187,7 @@ suite('tkn', () => {
11871187
});
11881188

11891189
test('TaskRun should contains condition run node', () => {
1190+
// eslint-disable-next-line @typescript-eslint/no-var-requires
11901191
const json = require(path.join('..', '..', 'test', 'pipelinerun.json')) as PipelineRunData;
11911192
const pipelineRun = new PipelineRun(pipelineItem, json.metadata.name, undefined, json, TreeItemCollapsibleState.Expanded);
11921193

0 commit comments

Comments
 (0)
Please sign in to comment.