mirror of
https://github.com/ajnart/homarr.git
synced 2026-01-30 03:09:19 +01:00
10 lines
202 B
JavaScript
10 lines
202 B
JavaScript
|
|
/** @type {import('eslint').Linter.Config} */
|
||
|
|
const config = {
|
||
|
|
extends: ["plugin:@next/next/recommended"],
|
||
|
|
rules: {
|
||
|
|
"@next/next/no-html-link-for-pages": "off",
|
||
|
|
},
|
||
|
|
};
|
||
|
|
|
||
|
|
module.exports = config;
|