Skip to content

Commit

Permalink
fix comma lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Eugene Chung committed Dec 16, 2022
1 parent 7ded248 commit 611c3c0
Showing 1 changed file with 26 additions and 26 deletions.
52 changes: 26 additions & 26 deletions node/pages/api/Linguistics.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ export const TEMPLATES = [
"****..."
];

export const WORDS: {[name: string]: string[]} = {
"Enemies": [
export const WORDS: { [name: string]: string[] } = {
Enemies: [
"enemy",
"weak foe",
"strong foe",
Expand Down Expand Up @@ -68,9 +68,9 @@ export const WORDS: {[name: string]: string[]} = {
"wraith",
"skeleton",
"monstrosity",
"ill-omened creature"
"ill-omened creature",
],
"People": [
People: [
"Tarnished",
"warrior",
"swordfighter",
Expand Down Expand Up @@ -114,9 +114,9 @@ export const WORDS: {[name: string]: string[]} = {
"champion",
"monarch",
"lord",
"god"
"god",
],
"Things": [
Things: [
"item",
"necessary item",
"precious item",
Expand Down Expand Up @@ -161,7 +161,7 @@ export const WORDS: {[name: string]: string[]} = {
"message",
"bloodstain",
"Erdtree",
"Elden Ring"
"Elden Ring",
],
"Battle Tactics": [
"close-quarters battle",
Expand All @@ -173,16 +173,16 @@ export const WORDS: {[name: string]: string[]} = {
"rushing in",
"stealth",
"mimicry",
"confusion" //
"confusion",
"pursuit",
"fleeing",
"summoning",
"circling around",
"jumping off",
"dashing through",
"brief respite"
]
"Actions": [
"brief respite",
],
Actions: [
"attacking",
"jump attack",
"running attack",
Expand All @@ -204,9 +204,9 @@ export const WORDS: {[name: string]: string[]} = {
"crouching", //
"target lock",
"item crafting",
"gesturing"
"gesturing",
],
"Situations": [
Situations: [
"morning",
"noon",
"evening",
Expand Down Expand Up @@ -249,9 +249,9 @@ export const WORDS: {[name: string]: string[]} = {
"dead end",
"looking away",
"unnoticed",
"out of stamina"
"out of stamina",
],
"Places": [
Places: [
"high road",
"checkpoint",
"bridge",
Expand Down Expand Up @@ -281,9 +281,9 @@ export const WORDS: {[name: string]: string[]} = {
"cliff",
"waterside", //
"nest",
"hole"
"hole",
],
"Directions": [
Directions: [
"east",
"west",
"south",
Expand All @@ -295,7 +295,7 @@ export const WORDS: {[name: string]: string[]} = {
"center",
"up", //
"down",
"edge"
"edge",
],
"Body Parts": [
"head",
Expand All @@ -306,9 +306,9 @@ export const WORDS: {[name: string]: string[]} = {
"rump",
"tail",
"core",
"fingers"
"fingers",
],
"Afinities": [
Afinities: [
"physical",
"standard",
"striking",
Expand All @@ -325,9 +325,9 @@ export const WORDS: {[name: string]: string[]} = {
"frost",
"sleep",
"madness",
"death"
"death",
],
"Concepts": [
Concepts: [
"life",
"Death",
"light",
Expand Down Expand Up @@ -386,9 +386,9 @@ export const WORDS: {[name: string]: string[]} = {
"dregs",
"fear",
"sacrifice",
"ruin"
"ruin",
],
"Phrases": [
Phrases: [
"good luck",
"look carefully",
"listen carefully",
Expand Down Expand Up @@ -418,8 +418,8 @@ export const WORDS: {[name: string]: string[]} = {
"seems familiar...",
"beautiful...", //
"you don't have the right",
"are you ready?"
]
"are you ready?",
],
};

export const CONJUNCTIONS = [
Expand Down

1 comment on commit 611c3c0

@vercel
Copy link

@vercel vercel bot commented on 611c3c0 Dec 16, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.