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 22, 2024
1 parent 3563ace commit 6b7d80b
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 6b7d80b

Please sign in to comment.