This commit is contained in:
Alexander Zinn
2025-08-25 13:36:17 -04:00
commit 705274c4ba
34 changed files with 1130 additions and 0 deletions

9
server/eslint.config.ts Normal file
View File

@@ -0,0 +1,9 @@
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.node}},
tseslint.configs.recommended
]);