From 3b2bd93d2a3a92f7dfc0ca602c268ddd1c83ceec Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Sun, 23 Apr 2023 22:06:51 +0200 Subject: [PATCH] build: add JSON schema to configuration files MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- .mocharc.json | 1 + .prettierrc.json | 1 + tsconfig.json | 1 + 3 files changed, 3 insertions(+) diff --git a/.mocharc.json b/.mocharc.json index a5b18124..676d4f02 100644 --- a/.mocharc.json +++ b/.mocharc.json @@ -1,4 +1,5 @@ { + "$schema": "https://json.schemastore.org/mocharc", "parallel": true, "diff": true, "package": "./package.json", diff --git a/.prettierrc.json b/.prettierrc.json index 187eda75..d77f0e56 100644 --- a/.prettierrc.json +++ b/.prettierrc.json @@ -1,4 +1,5 @@ { + "$schema": "http://json.schemastore.org/prettierrc", "arrowParens": "avoid", "semi": false, "singleQuote": true, diff --git a/tsconfig.json b/tsconfig.json index 9f8db467..1c8465ed 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,4 +1,5 @@ { + "$schema": "https://json.schemastore.org/tsconfig", "compilerOptions": { "target": "ES2022", "module": "ES2022", -- 2.34.1