CI stuff
This commit is contained in:
19
eslint.config.mjs
Normal file
19
eslint.config.mjs
Normal file
@@ -0,0 +1,19 @@
|
||||
import { FlatCompat } from '@eslint/eslintrc'
|
||||
|
||||
const compat = new FlatCompat({
|
||||
baseDirectory: import.meta.dirname,
|
||||
})
|
||||
|
||||
// WHY TF I INSTALLED ESLINT
|
||||
const eslintConfig = [
|
||||
...compat.config({
|
||||
extends: ['next'],
|
||||
rules: {
|
||||
'react/no-unescaped-entities': 'off',
|
||||
'@next/next/no-page-custom-font': 'off',
|
||||
'@typescript-eslint/no-unused-vars': 'off'
|
||||
},
|
||||
}),
|
||||
]
|
||||
|
||||
export default eslintConfig
|
||||
Reference in New Issue
Block a user