From c7775412c730bd60ad7ac1a2198cd3661101dd4d Mon Sep 17 00:00:00 2001 From: Yair Morgenstern Date: Thu, 21 Sep 2023 23:54:56 +0300 Subject: [PATCH] Documentation: Validate json using online tool --- docs/Modders/Type-checking.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/Modders/Type-checking.md b/docs/Modders/Type-checking.md index fe1422925d..7aa8414dde 100644 --- a/docs/Modders/Type-checking.md +++ b/docs/Modders/Type-checking.md @@ -4,6 +4,8 @@ Mistakes happen. Misnamed fields, things we forgot to add, or even stuff we didn Computers can handle a lot of that themselves, so we can let them do the work to ensure that our json files are correct, by using *json schemas*. +This also allows autocompletion when writing jsons! + As of now, only Buildings.json has a proper schema ## Using Android Studio