From 91c9ebeccfaba443e4f4d794971a0827ae88e40d Mon Sep 17 00:00:00 2001 From: El RIDO Date: Fri, 3 Apr 2026 18:42:32 +0200 Subject: [PATCH] exclude generated ES6 module from ESlint --- js/eslint.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/eslint.config.js b/js/eslint.config.js index 786d49e0..32ed4033 100644 --- a/js/eslint.config.js +++ b/js/eslint.config.js @@ -1,7 +1,7 @@ const globals = require('globals'); const { globalIgnores } = require('eslint/config') -module.exports = [globalIgnores(["./*.js", "!./privatebin.js"]), { +module.exports = [globalIgnores(["./*.*js", "!./privatebin.js"]), { languageOptions: { globals: { ...globals.amd,