From 55de9ce34645025daa47306d3ea23b7f0b028fd8 Mon Sep 17 00:00:00 2001 From: Kevin Odongo <113553977+odongo2019@users.noreply.github.com> Date: Tue, 3 Feb 2026 17:59:13 +0300 Subject: [PATCH] Clean up ESLint configuration file Remove unnecessary newline in ESLint config. --- frontend/eslint.config.js | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend/eslint.config.js b/frontend/eslint.config.js index f5947c902..ee163d078 100755 --- a/frontend/eslint.config.js +++ b/frontend/eslint.config.js @@ -2,7 +2,6 @@ import js from "@eslint/js"; import globals from "globals"; import pluginVue from "eslint-plugin-vue"; import { defineConfig } from "eslint/config"; - export default defineConfig([ { files: ["**/*.{js,mjs,cjs,vue}"], plugins: { js }, extends: ["js/recommended"], languageOptions: { globals: globals.browser } }, pluginVue.configs["flat/essential"],