From aedbf350df9c4224f740c522da54fc06797009a5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Sun, 23 Apr 2023 22:22:10 +0200 Subject: [PATCH] build: align URI to access JSON schemas MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- .eslintrc.json | 2 +- .lintstagedrc.json | 2 +- .prettierrc.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.eslintrc.json b/.eslintrc.json index 38c78361..7a97530e 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -1,5 +1,5 @@ { - "$schema": "http://json.schemastore.org/eslintrc", + "$schema": "https://json.schemastore.org/eslintrc", "root": true, "env": { "es2022": true, diff --git a/.lintstagedrc.json b/.lintstagedrc.json index 7b616f58..c8469cdd 100644 --- a/.lintstagedrc.json +++ b/.lintstagedrc.json @@ -1,5 +1,5 @@ { - "$schema": "http://json.schemastore.org/lintstagedrc.schema", + "$schema": "https://json.schemastore.org/lintstagedrc.schema", "{src,test}/**/*.{ts,tsx}": ["prettier --cache --write", "eslint --cache --fix"], "**/*.{json,md,yml,yaml}": ["prettier --cache --write"], "**/*.{js,jsx,mjs,cjs}": ["prettier --cache --write", "eslint --cache --fix"] diff --git a/.prettierrc.json b/.prettierrc.json index 0ac900c1..6414c22d 100644 --- a/.prettierrc.json +++ b/.prettierrc.json @@ -1,5 +1,5 @@ { - "$schema": "http://json.schemastore.org/prettierrc", + "$schema": "https://json.schemastore.org/prettierrc", "printWidth": 100, "singleQuote": true } -- 2.34.1