zenno: format & lint fixes

This commit is contained in:
2026-05-24 18:06:51 -04:00
parent 0f14ece4da
commit bae79a5320
6 changed files with 433 additions and 326 deletions

View File

@@ -1,5 +1,5 @@
import skillGlobal from '../../../../global/skill.json'
import groupGlobal from '../../../../global/skill-group.json'
import skillGlobal from '../../../../global/skill.json';
import groupGlobal from '../../../../global/skill-group.json';
/**
* Skill data.
@@ -120,7 +120,7 @@ export interface Ability {
/**
* Skill groups.
* Skills in a skill group replace each other when purchased.
*
*
* As a special case, horsegen lists both unique skills and their inherited
* versions in the skill groups for both.
*/
@@ -132,7 +132,7 @@ export interface SkillGroup {
/**
* Base skill in the skill group, if any.
* Either a common (white) skill or an Uma's own unique.
*
*
* Some skill groups, e.g. for G1 Averseness, have no base skill.
*/
skill1?: number;
@@ -153,7 +153,7 @@ export interface SkillGroup {
}
export const skills = {
global: skillGlobal as Skill[],
global: skillGlobal as Skill[],
} as const;
export const skillGroups = {
@@ -162,8 +162,8 @@ export const skillGroups = {
export const ZERO_SKILL: Readonly<Skill> = {
skill_id: 0,
name: "invalid skill",
description: "an invalid skill was specified",
name: 'invalid skill',
description: 'an invalid skill was specified',
group: 0,
rarity: 1,
group_rate: 1,