Skip to content

Commit

Permalink
chore: Add confiog for project
Browse files Browse the repository at this point in the history
  • Loading branch information
ci010 committed Jan 12, 2025
1 parent c440ba6 commit 59f5761
Showing 1 changed file with 36 additions and 3 deletions.
39 changes: 36 additions & 3 deletions packages/oxlint-config/oxlintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@
"**/node_modules/**",
"**/dist/**"
],
"globals": {
},
"globals": {},
"settings": {},
"rules": {
"eqeqeq": "warn",
Expand Down Expand Up @@ -44,7 +43,9 @@
"no-useless-constructor": 0,
"no-unused-vars": 0,
"no-use-before-define": 0,
"node/no-callback-literal": 0
"node/no-callback-literal": 0,
"no-wrapper-object-types": "off",
"no-thenable": "off"
},
"overrides": [
{
Expand All @@ -55,6 +56,38 @@
"rules": {
"@typescript-eslint/no-explicit-any": "off"
}
},
{
"files": [
"**/xmcl-runtime/**"
],
"rules": {
"import/no-cycle": "off"
}
},
{
"files": [
"**/xmcl-runtime-api/**"
],
"rules": {
"import/no-cycle": "off"
}
},
{
"files": [
"**/xmcl-electron-app/**"
],
"rules": {
"import/no-cycle": "off"
}
},
{
"files": [
"**/xmcl-keystone-ui/**"
],
"rules": {
"import/no-cycle": "off"
}
}
]
}

0 comments on commit 59f5761

Please sign in to comment.