Skip to content

Commit

Permalink
fix: update for latest eslint-plugin-functional v6 beta
Browse files Browse the repository at this point in the history
  • Loading branch information
RebeccaStevens committed Jul 21, 2023
1 parent 15619db commit 83536e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/plugins/functional.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const settings: Linter.Config = {
"functional/no-expression-statements": [
"error",
{
ignorePattern: "^assert",
ignoreCodePattern: "^assert",
},
],
"functional/immutable-data": [
Expand All @@ -34,7 +34,7 @@ export const settings: Linter.Config = {
"error",
{
allowInForLoopInit: true,
ignorePattern: ["^mutable", "^m_"],
ignoreIdentifierPattern: ["^mutable", "^m_"],
},
],
"functional/prefer-immutable-types": [
Expand Down

0 comments on commit 83536e4

Please sign in to comment.