From 11b43a924d606ce400f9e8ecc29eead1b4acfec5 Mon Sep 17 00:00:00 2001 From: Mara Kiefer <8320933+mnkiefer@users.noreply.github.com> Date: Mon, 15 Apr 2024 08:55:06 +0200 Subject: [PATCH] Update eslint.config.js --- eslint.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eslint.config.js b/eslint.config.js index c3410f37..1d25e036 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -2,7 +2,7 @@ const globals = require("globals"); const js = require('@eslint/js'); const cds = require('@sap/eslint-plugin-cds'); -module.exports = { +module.exports = [{ "files": ["**/*.js"], ...js.configs.recommended, "languageOptions": { @@ -32,4 +32,4 @@ module.exports = { ...cds.globals } } -} +}]