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 (#811)
  • Loading branch information
RebeccaStevens committed Aug 5, 2024
1 parent 21396d5 commit b3cb8d9
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 b3cb8d9

Please sign in to comment.