🎉First commit

This commit is contained in:
2025-11-12 21:51:18 +01:00
commit aff5871ecd
9 changed files with 3112 additions and 0 deletions

11
eslint.config.mjs Normal file
View File

@@ -0,0 +1,11 @@
// @ts-check
import eslint from "@eslint/js"
import eslintConfigPrettier from "eslint-config-prettier";
import { defineConfig } from 'eslint/config';
import tseslint from 'typescript-eslint';
export default defineConfig(
eslint.configs.recommended,
tseslint.configs.recommended,
eslintConfigPrettier
)