style: 🚨 linter go brrrr

This commit is contained in:
Sebin Nyshkim 2021-04-26 19:22:26 +02:00
parent 9df1999391
commit 48d2a6f2f8
13 changed files with 73 additions and 79 deletions

View file

@ -20,15 +20,15 @@ export default {
horns: "#413a3a",
claws: "#413a3a",
nipples: "#413a3a",
penis: "#413a3a"
penis: "#413a3a",
},
penis: {
shape: "humanoid",
type: "grower",
special: "ridged",
size: 20, // cm
girth: 5 // cm
}
girth: 5, // cm
},
};
},
@ -42,7 +42,7 @@ export default {
const dobLocaleString = this.dateOfBirth.toLocaleDateString(locale, {
year: "numeric",
month: "long",
day: "2-digit"
day: "2-digit",
});
return `${dobLocaleString} (${age})`;
@ -58,9 +58,9 @@ export default {
["Weight", `${this.weight} kg (${this.toLbs(this.weight)} lbs)`],
[
"Wingspan",
`${this.wingspan / 100} m (${this.toImperial(this.wingspan)})`
]
]
`${this.wingspan / 100} m (${this.toImperial(this.wingspan)})`,
],
],
};
const colors = {
@ -73,8 +73,8 @@ export default {
["Eyes", this.colors.eyes],
["Facial Spikes", this.colors.eyebrows],
["Horns/Claws/Nipples", this.colors.horns],
["Tail Spikes", this.colors.tailspikes]
]
["Tail Spikes", this.colors.tailspikes],
],
};
const penis = {
@ -85,11 +85,14 @@ export default {
["Special Traits", this.penis.special],
["Color", this.colors.penis],
["Length", `${this.penis.size} cm (${this.toInch(this.penis.size)})`],
["Girth", `${this.penis.girth} cm (${this.toInch(this.penis.girth)})`]
]
[
"Girth",
`${this.penis.girth} cm (${this.toInch(this.penis.girth)})`,
],
],
};
return { generic, colors, penis };
}
}
},
},
};