2023-06-09 18:21:18 +10:00
|
|
|
/** @type {import('eslint').Linter.Config} */
|
|
|
|
|
module.exports = {
|
|
|
|
|
root: true,
|
2023-08-28 08:37:59 +05:30
|
|
|
extends: ['@documenso/eslint-config'],
|
2023-06-09 18:21:18 +10:00
|
|
|
rules: {
|
|
|
|
|
'@next/next/no-img-element': 'off',
|
2024-06-06 14:46:48 +10:00
|
|
|
'no-unreachable': 'error',
|
2023-06-09 18:21:18 +10:00
|
|
|
},
|
|
|
|
|
settings: {
|
|
|
|
|
next: {
|
|
|
|
|
rootDir: ['apps/*/'],
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
};
|