Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ibgreen committed Sep 24, 2023
1 parent 3f881bb commit 1bd083c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/wkt/src/lib/utils/base64-encoder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export class Base64Encoder {
return Math.ceil(array.byteLength / 4) * 3;
}

decode(array: Uint8Array, target?: ArrayBuffer) {}
decode(array: Uint8Array, target?: ArrayBuffer) {} // eslint-disable-line
}

/*
Expand Down
2 changes: 1 addition & 1 deletion modules/wkt/test/twkb-loader.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ test('TWKBLoader#2D', async (t) => {
// TODO parseWKB outputs TypedArrays; testCase contains regular arrays
for (const testCase of Object.values(TEST_CASES)) {
if (testCase.geoJSON.type === 'GeometryCollection') {
continue;
continue; // eslint-disable-line
}

// Big endian
Expand Down

0 comments on commit 1bd083c

Please sign in to comment.