1 2 3 4 5 6 7 8 9 10 11 12 13 14 15module.exports = { root: true, extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended', 'prettier', 'plugin:solid/typescript'], plugins: ['@typescript-eslint', 'solid'], parser: '@typescript-eslint/parser', ignorePatterns: ['**/*.md'], rules: { '@next/next/no-img-element': 'off', '@next/next/no-html-link-for-pages': 'off', 'solid/no-innerhtml': 'off', '@typescript-eslint/no-namespace': 'off', '@typescript-eslint/no-explicit-any': 'off' } }