Skip to content

Commit

Permalink
add args ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
baileympearson committed Oct 9, 2024
1 parent 4143a75 commit 1a5ea12
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,14 @@
"node": true,
"es6": true
},
"plugins": ["prettier", "@typescript-eslint"],
"extends": ["eslint:recommended", "plugin:prettier/recommended"],
"plugins": [
"prettier",
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:prettier/recommended"
],
"rules": {
"strict": "error",
"prettier/prettier": "error",
Expand All @@ -24,6 +30,9 @@
}
],
"no-implicit-coercion": "error",
"@typescript-eslint/strict-boolean-expressions": "error"
"@typescript-eslint/strict-boolean-expressions": "error",
"no-unused-vars": ["error", {
"argsIgnorePattern": "^_"
}]
}
}
}

0 comments on commit 1a5ea12

Please sign in to comment.