mirror of
https://github.com/documenso/documenso.git
synced 2025-11-09 20:12:31 +10:00
15 lines
276 B
JavaScript
15 lines
276 B
JavaScript
/** @type {import('eslint').Linter.Config} */
|
|
module.exports = {
|
|
root: true,
|
|
extends: ['@documenso/eslint-config'],
|
|
rules: {
|
|
'@next/next/no-img-element': 'off',
|
|
'no-unreachable': 'error',
|
|
},
|
|
settings: {
|
|
next: {
|
|
rootDir: ['apps/*/'],
|
|
},
|
|
},
|
|
};
|