mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
febf19ccc0
* feat: changemod space * fix: space app dir fixes * fix: build errors
44 lines
1.4 KiB
JavaScript
44 lines
1.4 KiB
JavaScript
module.exports = {
|
|
extends: [
|
|
"next",
|
|
"turbo",
|
|
"prettier",
|
|
"plugin:@typescript-eslint/recommended",
|
|
],
|
|
parser: "@typescript-eslint/parser",
|
|
parserOptions: {
|
|
ecmaVersion: 2021, // Or the ECMAScript version you are using
|
|
sourceType: "module", // Or 'script' if you're using CommonJS or other modules
|
|
},
|
|
plugins: ["react", "@typescript-eslint", "import"],
|
|
settings: {
|
|
next: {
|
|
rootDir: ["web/", "space/", "admin/", "packages/*/"],
|
|
},
|
|
},
|
|
rules: {
|
|
"prefer-const": "error",
|
|
"no-irregular-whitespace": "error",
|
|
"no-trailing-spaces": "error",
|
|
"no-duplicate-imports": "error",
|
|
"arrow-body-style": ["error", "as-needed"],
|
|
"@next/next/no-html-link-for-pages": "off",
|
|
"@next/next/no-img-element": "off",
|
|
"react/jsx-key": "error",
|
|
"react/self-closing-comp": ["error", { component: true, html: true }],
|
|
"react/jsx-boolean-value": "error",
|
|
"react/jsx-no-duplicate-props": "error",
|
|
"@typescript-eslint/no-unused-vars": ["error"],
|
|
"@typescript-eslint/no-explicit-any": "warn",
|
|
"@typescript-eslint/no-useless-empty-export": "error",
|
|
"@typescript-eslint/prefer-ts-expect-error": "error",
|
|
"@typescript-eslint/naming-convention": [
|
|
"error",
|
|
{
|
|
selector: ["function", "variable"],
|
|
format: ["camelCase", "snake_case", "UPPER_CASE", "PascalCase"],
|
|
},
|
|
],
|
|
},
|
|
};
|