2021-12-08 18:25:37 +00:00
|
|
|
module.exports = {
|
|
|
|
parser: '@typescript-eslint/parser',
|
2021-12-09 23:23:21 +00:00
|
|
|
extends: ['plugin:react-hooks/recommended', 'plugin:@next/next/recommended'],
|
2021-12-08 18:25:37 +00:00
|
|
|
rules: {
|
2021-12-09 23:23:21 +00:00
|
|
|
// Add or disable rules here.
|
2021-12-11 00:18:43 +00:00
|
|
|
'@next/next/no-img-element': 'off',
|
2021-12-09 23:23:21 +00:00
|
|
|
},
|
2021-12-08 18:25:37 +00:00
|
|
|
}
|