mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-11 22:12:22 +00:00
14 lines
274 B
JavaScript
14 lines
274 B
JavaScript
module.exports = {
|
|
parser: "@babel/eslint-parser",
|
|
extends: ["next", "turbo", "prettier"],
|
|
rules: {
|
|
"@next/next/no-html-link-for-pages": "off",
|
|
},
|
|
parserOptions: {
|
|
requireConfigFile: false,
|
|
babelOptions: {
|
|
presets: ["next/babel"],
|
|
},
|
|
},
|
|
};
|