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 Apr 30, 2024
1 parent 19b9672 commit 1c676ff
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 1c676ff

Please sign in to comment.