Files
documenso/.eslintrc.cjs
2023-06-09 18:22:21 +10: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/*/'],
},
},
};