feat: adding baseui components to propel package (#7585)

* feat: adding baseui components

* fix: export from the package.json
This commit is contained in:
sriram veeraghanta 2025-08-18 19:35:34 +05:30 committed by GitHub
parent f142266bed
commit 9c21fd320c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
14 changed files with 815 additions and 26 deletions

View file

@ -3,4 +3,29 @@ module.exports = {
root: true,
extends: ["@plane/eslint-config/library.js"],
parser: "@typescript-eslint/parser",
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,
},
},
],
},
};