update node packages

This commit is contained in:
Aarni Halinen
2025-02-09 21:20:38 +02:00
parent 3f73fbec62
commit ff8230d9c0
8 changed files with 4788 additions and 4013 deletions
+23
View File
@@ -0,0 +1,23 @@
import globals from "globals";
import js from "@eslint/js";
export default [
{
ignores: ["**/.venv/", "**/collected_static/", "**/static/js/lib/**"],
},
{
languageOptions: {
globals: {
...globals.browser,
...globals.jquery,
angular: true,
moment: true,
_: true
},
},
},
{
...js.configs.recommended
}
];