Skip to content

Commit

Permalink
Possibility to suppress "react-hooks/exhaustive-deps" (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
manni497 authored Mar 12, 2024
1 parent b4dc280 commit dac8f03
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added

- Possibility to suppress "react-hooks/exhaustive-deps"

## [1.4.0] - 2023-07-11

### Changed
Expand Down
1 change: 1 addition & 0 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -14253,6 +14253,7 @@ const allowedTsSuppressions = [
"react/jsx-props-no-spreading",
"react/no-array-index-key",
"react/no-unused-prop-types",
"react-hooks/exhaustive-deps",
];
const commentPrefix = "[action-check-suppressions]";
const commentSuppressionWarning = "Suppressions should not be used, please make sure with the Project Team that this suppression is ok.";
Expand Down
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ const allowedTsSuppressions = [
"react/jsx-props-no-spreading",
"react/no-array-index-key",
"react/no-unused-prop-types",
"react-hooks/exhaustive-deps",
];
const commentPrefix = "[action-check-suppressions]";
const commentSuppressionWarning = "Suppressions should not be used, please make sure with the Project Team that this suppression is ok.";
Expand Down

0 comments on commit dac8f03

Please sign in to comment.