mirror of
https://github.com/TangSengDaoDao/TangSengDaoDaoWeb
synced 2025-06-06 01:04:26 +00:00
10 lines
266 B
JavaScript
10 lines
266 B
JavaScript
module.exports = {
|
|
extends: ["next", "turbo", "prettier", "@typescript-eslint/parser"],
|
|
rules: {
|
|
"@next/next/no-html-link-for-pages": "off",
|
|
"react/jsx-key": "off",
|
|
"@next/next/no-img-element": "off",
|
|
"no-template-curly-in-string": "off"
|
|
},
|
|
};
|