2022-11-21 11:12:43 +01:00
|
|
|
module.exports = {
|
2022-12-22 17:02:34 +01:00
|
|
|
extends: [
|
|
|
|
'next',
|
|
|
|
'eslint:recommended',
|
|
|
|
'plugin:@typescript-eslint/recommended',
|
|
|
|
'prettier',
|
|
|
|
],
|
|
|
|
parser: '@typescript-eslint/parser',
|
|
|
|
plugins: ['@typescript-eslint'],
|
2022-11-21 11:12:43 +01:00
|
|
|
settings: {
|
|
|
|
react: {
|
|
|
|
version: 'detect',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
rules: {
|
2022-12-22 17:02:34 +01:00
|
|
|
'@typescript-eslint/no-namespace': 'off',
|
2022-11-21 11:12:43 +01:00
|
|
|
},
|
|
|
|
}
|