Update ESLint configuration, package.json, and README; improve formatting and versioning consistency. Adjust TypeScript configuration to disallow importing extensions and refine test scripts for better readability.

This commit is contained in:
2025-11-23 01:15:28 -05:00
parent 3deadc6e75
commit f007573ade
15 changed files with 218 additions and 164 deletions

View File

@@ -253,7 +253,7 @@ describe("HashMap", () => {
const numMap = new HashMap<number, string>(
16,
0.75,
new NumericHashFunction()
new NumericHashFunction(),
);
numMap.set(123, "value1");
@@ -273,7 +273,7 @@ describe("HashMap", () => {
const customMap = new HashMap<string, string>(
8,
0.75,
new SimpleHashFunction()
new SimpleHashFunction(),
);
customMap.set("hi", "short");
@@ -359,4 +359,3 @@ describe("HashMap", () => {
});
});
});