Skip to content

Commit

Permalink
update eslint config (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcinciarka authored Sep 14, 2023
1 parent 0e31824 commit ccf0b21
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@
"ignoreMemberSort": false,
"memberSyntaxSortOrder": ["none", "all", "multiple", "single"]
}
],
"no-unused-vars": [
"error",
{ "argsIgnorePattern": "^_", "varsIgnorePattern": "^_" }
]
},
"env": {
Expand Down
2 changes: 1 addition & 1 deletion configs/oasis-borrow/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { ConfigHelperType } from "⌨️";

export default function ({ isDevelopment }: ConfigHelperType) {
export default function ({ isDevelopment: _isDevelopment }: ConfigHelperType) {
return {
features: {
AaveV3ArbitrumBorrow: false,
Expand Down

0 comments on commit ccf0b21

Please sign in to comment.