mirror of
https://github.com/makeplane/plane.git
synced 2025-12-15 19:37:51 +01:00
20 lines
600 B
JavaScript
20 lines
600 B
JavaScript
module.exports = {
|
|
root: true,
|
|
extends: ["@plane/eslint-config/next.js"],
|
|
ignorePatterns: ["build/**", "dist/**", ".vite/**"],
|
|
rules: {
|
|
"no-duplicate-imports": "off",
|
|
"import/no-duplicates": ["error", { "prefer-inline": false }],
|
|
"import/consistent-type-specifier-style": ["error", "prefer-top-level"],
|
|
"@typescript-eslint/no-import-type-side-effects": "error",
|
|
"@typescript-eslint/consistent-type-imports": [
|
|
"error",
|
|
{
|
|
prefer: "type-imports",
|
|
fixStyle: "separate-type-imports",
|
|
disallowTypeAnnotations: false,
|
|
},
|
|
],
|
|
},
|
|
};
|