From: Jérôme Benoit Date: Sun, 23 Apr 2023 20:06:51 +0000 (+0200) Subject: build: add JSON schema to configuration files X-Git-Tag: v2.4.12~48 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=3b2bd93d2a3a92f7dfc0ca602c268ddd1c83ceec;p=poolifier.git build: add JSON schema to configuration files Signed-off-by: Jérôme Benoit --- 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",