From 89fa98d85546eb93064ce4a2b66e79341750b577 Mon Sep 17 00:00:00 2001 From: TymanWasTaken Date: Tue, 13 Jul 2021 16:57:17 -0400 Subject: Fix print width for json (#4) * Update .prettierrc.yml * What if I make this 10 * Prettified Code! Co-authored-by: TymanWasTaken --- .../assets/skyblockhud/data/trackers.json | 22 +++++++++++++++++----- src/main/resources/mixins.skyblockhud.json | 5 ++++- 2 files changed, 21 insertions(+), 6 deletions(-) (limited to 'src/main') diff --git a/src/main/resources/assets/skyblockhud/data/trackers.json b/src/main/resources/assets/skyblockhud/data/trackers.json index a239b26..7966687 100644 --- a/src/main/resources/assets/skyblockhud/data/trackers.json +++ b/src/main/resources/assets/skyblockhud/data/trackers.json @@ -1,7 +1,9 @@ { "trackers": [ { - "location": ["DRAGONSNEST"], + "location": [ + "DRAGONSNEST" + ], "drops": [ { "id": "WISE_FRAGMENT", @@ -102,7 +104,10 @@ ] }, { - "location": ["RUINS", "HOWLINGCAVE"], + "location": [ + "RUINS", + "HOWLINGCAVE" + ], "drops": [ { "id": "WOLF_TOOTH", @@ -153,7 +158,9 @@ ] }, { - "location": ["SPIDERSDEN"], + "location": [ + "SPIDERSDEN" + ], "drops": [ { "id": "TARANTULA_WEB", @@ -217,7 +224,10 @@ ] }, { - "location": ["GRAVEYARD", "COALMINE"], + "location": [ + "GRAVEYARD", + "COALMINE" + ], "drops": [ { "id": "REVENANT_FLESH", @@ -315,7 +325,9 @@ ] }, { - "location": ["THEMIST"], + "location": [ + "THEMIST" + ], "drops": [ { "id": "SORROW", diff --git a/src/main/resources/mixins.skyblockhud.json b/src/main/resources/mixins.skyblockhud.json index b6f4593..d928e55 100644 --- a/src/main/resources/mixins.skyblockhud.json +++ b/src/main/resources/mixins.skyblockhud.json @@ -2,5 +2,8 @@ "package": "com.thatgravyboat.skyblockhud.mixins", "refmap": "mixins.skyblockhud.refmap.json", "compatibilityLevel": "JAVA_8", - "mixins": ["MixinGuiIngameForge", "MixinNetHandlerPlayClient"] + "mixins": [ + "MixinGuiIngameForge", + "MixinNetHandlerPlayClient" + ] } -- cgit