Files
documenso/.eslintrc.cjs
2023-11-06 13:01:06 +11:00

14 lines
245 B
JavaScript

/** @type {import('eslint').Linter.Config} */
module.exports = {
root: true,
extends: ['@documenso/eslint-config'],
rules: {
'@next/next/no-img-element': 'off',
},
settings: {
next: {
rootDir: ['apps/*/'],
},
},
};