Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: disable several rules
  • Loading branch information
logaretm committed Mar 10, 2026
commit 7cf7e2cf58c276e92f9675c4ae8a7a001c4b0293
10 changes: 8 additions & 2 deletions .oxlintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,11 @@
"typescript/unbound-method": "error",
"typescript/no-explicit-any": "error",
"typescript/no-empty-function": "off",
"typescript/prefer-optional-chain": ["error"]
"typescript/prefer-optional-chain": ["error"],
"typescript/no-redundant-type-constituents": "off",
"typescript/restrict-template-expressions": "off",
"typescript/await-thenable": "off",
Comment thread
logaretm marked this conversation as resolved.
Outdated
"typescript/no-base-to-string": "warn"
}
},
{
Expand Down Expand Up @@ -108,7 +112,9 @@
"typescript/unbound-method": "off",
"max-lines": "off",
"complexity": "off",
"typescript/prefer-optional-chain": "off"
"typescript/prefer-optional-chain": "off",
"typescript/no-misused-spread": "off",
"typescript/require-array-sort-compare": "off"
}
},
{
Expand Down
4 changes: 3 additions & 1 deletion dev-packages/.oxlintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
"rules": {
"typescript/no-explicit-any": "off",
"max-lines": "off",
"no-unused-expressions": "off"
"no-unused-expressions": "off",
"typescript/require-array-sort-compare": "off",
"typescript/no-misused-spread": "off"
}
}