11 lines
244 B
JavaScript
11 lines
244 B
JavaScript
module.exports = {
|
|
root: true,
|
|
extends: ['custom', 'plugin:solid/typescript'],
|
|
plugins: ['solid'],
|
|
rules: {
|
|
'@next/next/no-img-element': 'off',
|
|
'@next/next/no-html-link-for-pages': 'off',
|
|
'solid/no-innerhtml': 'off',
|
|
},
|
|
}
|