Hindsight is always 20:20.

-- Billy Wilder
This commit is contained in:
Sebastien Castiel
2024-10-25 14:08:53 -04:00
parent 4db788680e
commit 62cfad1a32
143 changed files with 600 additions and 27636 deletions

11
eslint.config.mjs Normal file
View File

@@ -0,0 +1,11 @@
import pluginJs from '@eslint/js'
import globals from 'globals'
import tseslint from 'typescript-eslint'
export default [
{ files: ['**/*.{js,mjs,cjs,ts}'] },
{ languageOptions: { globals: globals.browser } },
pluginJs.configs.recommended,
...tseslint.configs.recommended,
]