move to new website, wiped history

This commit is contained in:
DecDuck
2025-09-05 13:22:28 +10:00
commit fdc2bbe25e
107 changed files with 11752 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
import { FlatCompat } from '@eslint/eslintrc'
import { dirname } from 'path'
import { fileURLToPath } from 'url'
const __filename = fileURLToPath(import.meta.url)
const __dirname = dirname(__filename)
const compat = new FlatCompat({
baseDirectory: __dirname,
})
const eslintConfig = [
...compat.extends('next/core-web-vitals', 'next/typescript'),
{
rules: {
'@next/next/no-img-element': 'off',
'prefer-const': 'off',
},
},
]
export default eslintConfig