module.exports = {
root: true,
// This tells ESLint to load the config from the package `eslint-config-openassistantgpt`
extends: ['openassistantgpt'],
settings: {
next: {
rootDir: ['apps/*/'],
},
},
rules: {
'@next/next/no-html-link-for-pages': ['error', 'website/sdk', 'examples'],
'@next/next/no-html-link-for-pages': [
'error',
'@openassistantgpt/assistant',
],
},
};