Merge branch 'main' into improve-lint

This commit is contained in:
Lucas Smith
2024-03-18 13:31:43 +11:00
committed by GitHub
54 changed files with 3291 additions and 466 deletions

View File

@ -17,7 +17,15 @@ module.exports = {
parser: '@typescript-eslint/parser',
parserOptions: { project: true },
parserOptions: {
tsconfigRootDir: __dirname,
project: ['../../tsconfig.eslint.json'],
ecmaVersion: 2022,
ecmaFeatures: {
jsx: true,
},
sourceType: 'module',
},
rules: {
'@next/next/no-html-link-for-pages': 'off',