forked from github/plane
21 lines
590 B
JavaScript
21 lines
590 B
JavaScript
|
module.exports = {
|
||
|
extends: ["next", "turbo", "prettier"],
|
||
|
parser: "@typescript-eslint/parser",
|
||
|
plugins: ["react", "@typescript-eslint"],
|
||
|
settings: {
|
||
|
next: {
|
||
|
rootDir: ["app/", "docs/", "packages/*/"],
|
||
|
},
|
||
|
},
|
||
|
rules: {
|
||
|
"@next/next/no-html-link-for-pages": "off",
|
||
|
"react/jsx-key": "off",
|
||
|
"prefer-const": "error",
|
||
|
"no-irregular-whitespace": "error",
|
||
|
"no-trailing-spaces": "error",
|
||
|
"no-duplicate-imports": "error",
|
||
|
"arrow-body-style": ["error", "as-needed"],
|
||
|
"react/self-closing-comp": ["error", { component: true, html: true }],
|
||
|
},
|
||
|
};
|