refactor: rule of coverage are in one place

This commit is contained in:
Julien Froidefond
2025-08-27 14:31:05 +02:00
parent a5bcdd34fb
commit a8cad0b2ec
16 changed files with 430 additions and 133 deletions

View File

@@ -19,13 +19,15 @@ export const SKILL_LEVEL_VALUES: Record<Exclude<SkillLevel, null>, number> = {
expert: 3,
};
export type SkillImportance = "incontournable" | "majeure" | "standard";
export interface Skill {
id: string;
name: string;
description: string;
icon?: string;
links: string[];
importance?: string;
importance: SkillImportance;
}
export interface SkillCategory {