chore: initial commit
Build and Deploy Docs / build (push) Failing after 1m41s
Bump version / Bump version and create changelog with commitizen (push) Failing after 7s

This commit is contained in:
Ulenar of Mondarth
2025-07-14 18:00:35 +00:00
commit 6803c8336b
59 changed files with 6657 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
import js from '@eslint/js';
import svelte from 'eslint-plugin-svelte';
import globals from 'globals';
import ts from 'typescript-eslint';
export default ts.config(js.configs.recommended, ...ts.configs.recommended, ...svelte.configs.recommended, {
languageOptions: {
globals: {
...globals.node,
...globals.browser,
...globals.jquery,
},
},
rules: {
'no-shadow': [
'error',
{
builtinGlobals: true,
hoist: 'all',
allow: ['document', 'event', 'name', 'parent', 'status', 'top'],
},
],
},
});