Skip to content

Commit

Permalink
feat(functional-parameters): change options in recommended and lite c…
Browse files Browse the repository at this point in the history
…onfigs

Parameter count is only enforced if the function's type is declared locally.
  • Loading branch information
RebeccaStevens committed May 25, 2024
1 parent 3e48bb8 commit 5bd3589
Showing 1 changed file with 17 additions and 5 deletions.
22 changes: 17 additions & 5 deletions src/configs/recommended.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,23 @@ const overrides = {
[functionalParameters.fullName]: [
"error",
{
enforceParameterCount: {
ignoreLambdaExpression: true,
ignoreIIFE: true,
ignoreGettersAndSetters: true,
},
enforceParameterCount: false,
overrides: [
{
specifiers: [
{
from: "file",
},
],
options: {
enforceParameterCount: {
ignoreLambdaExpression: true,
ignoreIIFE: true,
ignoreGettersAndSetters: true,
},
},
},
],
},
],
[noConditionalStatements.fullName]: [
Expand Down

0 comments on commit 5bd3589

Please sign in to comment.