Skip to content

Commit 583b292

Browse files
fix some lint errors
1 parent 6b1b66a commit 583b292

File tree

3 files changed

+31
-26
lines changed

3 files changed

+31
-26
lines changed

.eslintrc.js

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ module.exports = {
1212
"@typescript-eslint/explicit-function-return-type": "off",
1313
"@typescript-eslint/no-non-null-assertion": "off",
1414
"@typescript-eslint/explicit-module-boundary-types": "off",
15+
"@typescript-eslint/no-explicit-any": "off",
1516
"license-header/header": ["error", "./resources/license-header.js"],
1617
"@typescript-eslint/no-unused-vars": "off",
1718
"unused-imports/no-unused-imports": "error",

src/ipc/I64.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -22,22 +22,22 @@ export default abstract class I64 extends Vector {
2222
length: number,
2323
offset: number,
2424
qtype: number,
25-
dataView: DataView
25+
dataView: DataView,
2626
) {
2727
super(length, offset, qtype, dataView, 8);
2828
}
2929

3030
calcRange(): bigint[] {
3131
let xMax = this.getScalar(0);
3232
let xMin = xMax;
33-
// @ts-ignore TS2304
33+
// @ts-expect-error TS2304
3434
for (let i = 1; i < this.length; i++) {
3535
const x = this.getScalar(i);
36-
// @ts-ignore TS2304
36+
// @ts-expect-error TS2304
3737
if (xMax === I64.nullValue || (x > xMax && x !== I64.nullValue)) {
3838
xMax = x;
3939
}
40-
// @ts-ignore TS2304
40+
// @ts-expect-error TS2304
4141
if (xMin === I64.nullValue || (x < xMin && x !== I64.nullValue)) {
4242
xMin = x;
4343
}
@@ -50,7 +50,7 @@ export default abstract class I64 extends Vector {
5050
*/
5151
public deserializeScalar<DType>(
5252
scalar: bigint,
53-
deserialize: (scalar: bigint) => DType
53+
deserialize: (scalar: bigint) => DType,
5454
): DType | number | null {
5555
if (scalar === I64.nullValue) {
5656
return null;
@@ -68,7 +68,7 @@ export default abstract class I64 extends Vector {
6868
*/
6969
public deserializeScalarAt<DType>(
7070
index: number,
71-
deserialize: (scalar: bigint) => DType
71+
deserialize: (scalar: bigint) => DType,
7272
): DType | number | null {
7373
const s = this.getScalar(index);
7474
return this.deserializeScalar(s, deserialize);

src/ipc/vector.ts

+24-20
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export default abstract class Vector extends TypeBase {
2828
offset: number,
2929
qtype: number,
3030
dataView: DataView,
31-
size: number
31+
size: number,
3232
) {
3333
super(length, offset, qtype);
3434
this.dataView = dataView;
@@ -54,9 +54,9 @@ export default abstract class Vector extends TypeBase {
5454
new Uint8Array(
5555
this.dataView.buffer,
5656
this.offset,
57-
arg.length * this.size
57+
arg.length * this.size,
5858
).set(
59-
new Uint8Array(arg.dataView.buffer, arg.offset, arg.length * this.size)
59+
new Uint8Array(arg.dataView.buffer, arg.offset, arg.length * this.size),
6060
);
6161
}
6262

@@ -79,20 +79,20 @@ export default abstract class Vector extends TypeBase {
7979
if (this.size !== 8 || [9, 15].indexOf(this.qtype) !== -1) {
8080
const compareFn = (x: number, y: number): number =>
8181
x - (this.hash(y) as number);
82-
// @ts-ignore
82+
// @ts-expect-error
8383
return Tools.binarySearch2(Number(value), this.index, compareFn);
8484
} else {
8585
const compareFn = (x: bigint, y: number): number =>
8686
Number(x - (this.hash(y) as bigint));
87-
// @ts-ignore
87+
// @ts-expect-error
8888
return Tools.binarySearch2(BigInt(value), this.index, compareFn);
8989
}
9090
}
9191

9292
public mergeKeyedPrimary(
9393
arg: Vector,
9494
maxRows: number,
95-
insertIndices: Array<number>
95+
insertIndices: Array<number>,
9696
): number {
9797
this.resetRangeCache();
9898
this.index = this.index ? this.index : this.generateIndex();
@@ -121,13 +121,13 @@ export default abstract class Vector extends TypeBase {
121121
new Uint8Array(
122122
this.dataView.buffer,
123123
this.offset + targetIndex * this.size,
124-
this.size
124+
this.size,
125125
).set(
126126
new Uint8Array(
127127
arg.dataView.buffer,
128128
arg.offset + i * this.size,
129-
this.size
130-
)
129+
this.size,
130+
),
131131
);
132132
insertIndices.push(targetIndex);
133133
} else {
@@ -142,7 +142,7 @@ export default abstract class Vector extends TypeBase {
142142
arg: Vector,
143143
indices: Array<number>,
144144
indexOffset: number,
145-
maxRows: number
145+
maxRows: number,
146146
): void {
147147
this.resetRangeCache();
148148
for (let i = 0; i < indices.length; i++) {
@@ -159,13 +159,13 @@ export default abstract class Vector extends TypeBase {
159159
new Uint8Array(
160160
this.dataView.buffer,
161161
this.offset + targetIndex * this.size,
162-
this.size
162+
this.size,
163163
).set(
164164
new Uint8Array(
165165
arg.dataView.buffer,
166166
arg.offset + i * this.size,
167-
this.size
168-
)
167+
this.size,
168+
),
169169
);
170170
}
171171

@@ -176,7 +176,11 @@ export default abstract class Vector extends TypeBase {
176176
this.bufferLength = extLength || this.bufferLength;
177177
const buffer = new ArrayBuffer(this.bufferLength * this.size);
178178
new Uint8Array(buffer, 0, this.length * this.size).set(
179-
new Uint8Array(this.dataView.buffer, this.offset, this.length * this.size)
179+
new Uint8Array(
180+
this.dataView.buffer,
181+
this.offset,
182+
this.length * this.size,
183+
),
180184
);
181185

182186
this.dataView = new DataView(buffer);
@@ -212,18 +216,18 @@ export default abstract class Vector extends TypeBase {
212216
const typedArray = new TA(this.length);
213217

214218
typedArray.set(
215-
// @ts-ignore
219+
// @ts-expect-error
216220
new TA(
217221
this.dataView.buffer,
218222
this.indexOffset * this.size,
219-
this.length - this.indexOffset
220-
)
223+
this.length - this.indexOffset,
224+
),
221225
);
222226

223227
typedArray.set(
224-
// @ts-ignore
228+
// @ts-expect-error
225229
new TA(this.dataView.buffer, 0, this.indexOffset),
226-
this.length - this.indexOffset
230+
this.length - this.indexOffset,
227231
);
228232

229233
return typedArray;
@@ -252,7 +256,7 @@ export default abstract class Vector extends TypeBase {
252256
index.sort((a, b) => (this.hash(a) as number) - (this.hash(b) as number));
253257
} else {
254258
index.sort((a, b) =>
255-
Number((this.hash(a) as bigint) - (this.hash(b) as bigint))
259+
Number((this.hash(a) as bigint) - (this.hash(b) as bigint)),
256260
);
257261
}
258262

0 commit comments

Comments
 (0)