From 21659f5387f44eeb941d4402abc239635de97ffa Mon Sep 17 00:00:00 2001 From: Devon Powell Date: Tue, 26 Nov 2024 14:36:59 -0500 Subject: [PATCH] Rename --- eslint.config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/eslint.config.js b/eslint.config.js index 17eeedf..7a52bb0 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -7,6 +7,7 @@ import jsonPlugin from 'eslint-plugin-json'; const __filename = fileURLToPath(import.meta.url); const __dirname = dirname(__filename); +const jsonConfig = jsonPlugin.configs['recommended']; const gitignorePath = resolve(__dirname, '.gitignore'); export default [ @@ -26,5 +27,5 @@ export default [ } } }, - jsonPlugin.configs['recommended'] + jsonConfig ];