2025-01-14 16:50:41 +05:30
|
|
|
module.exports = {
|
|
|
|
|
root: true,
|
2025-08-26 02:14:00 +05:30
|
|
|
extends: ["@plane/eslint-config/library.js", "plugin:storybook/recommended"],
|
2025-08-18 19:35:34 +05:30
|
|
|
rules: {
|
|
|
|
|
"import/order": [
|
|
|
|
|
"warn",
|
|
|
|
|
{
|
|
|
|
|
groups: ["builtin", "external", "internal", "parent", "sibling"],
|
|
|
|
|
pathGroups: [
|
|
|
|
|
{
|
|
|
|
|
pattern: "react",
|
|
|
|
|
group: "external",
|
|
|
|
|
position: "before",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
pattern: "@plane/**",
|
|
|
|
|
group: "external",
|
|
|
|
|
position: "after",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
pathGroupsExcludedImportTypes: ["builtin", "internal", "react"],
|
|
|
|
|
alphabetize: {
|
|
|
|
|
order: "asc",
|
|
|
|
|
caseInsensitive: true,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
2025-01-14 16:50:41 +05:30
|
|
|
};
|