Add eslint and fix bullet lists

This commit is contained in:
2026-03-15 15:05:25 +01:00
parent 37f0589833
commit decc46064e
7 changed files with 2248 additions and 832 deletions

22
eslint.config.ts Normal file
View File

@@ -0,0 +1,22 @@
import js from "@eslint/js";
import globals from "globals";
import tseslint from "typescript-eslint";
import { defineConfig } from "eslint/config";
export default defineConfig([
{
files:
["**/*.{js,mjs,cjs,ts,mts,cts}"],
plugins: {
js
},
extends: ["js/recommended"],
languageOptions: {
globals: globals.browser
},
rules: {
"indent": ["error", "tab"]
}
},
tseslint.configs.recommended,
]);