chore(eslint): basic config

This commit is contained in:
Elian Doran 2025-12-06 11:05:34 +02:00
parent e87a368e87
commit dfb9ce990d
No known key found for this signature in database

15
eslint.config.mjs Normal file
View File

@ -0,0 +1,15 @@
// @ts-check
import eslint from '@eslint/js';
import { defineConfig, globalIgnores } from 'eslint/config';
import tseslint from 'typescript-eslint';
export default defineConfig(
globalIgnores([
".cache",
"tmp",
"**/dist"
]),
eslint.configs.recommended,
tseslint.configs.recommended,
);