Skip to content

Commit

Permalink
fix(config): add descriptions to JSON schema properties
Browse files Browse the repository at this point in the history
  • Loading branch information
Keyrxng committed Nov 26, 2024
1 parent bd5cbb1 commit c8082e6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/types/plugin-inputs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ import { StaticDecode, Type as T } from "@sinclair/typebox";
*/
export const pluginSettingsSchema = T.Object(
{
matchThreshold: T.Number({ default: 0.95 }),
warningThreshold: T.Number({ default: 0.75 }),
jobMatchingThreshold: T.Number({ default: 0.75 }),
matchThreshold: T.Number({ default: 0.95, description: "The minimum similarity score when considering existing issues to be duplicates." }),
warningThreshold: T.Number({ default: 0.75, description: "" }),
jobMatchingThreshold: T.Number({ default: 0.75, description: "The minimum similarity score when considering users to be suitable for a job." }),
},
{ default: {} }
);
Expand Down

0 comments on commit c8082e6

Please sign in to comment.