Skip to content

Commit

Permalink
Suppress Max-lines (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
manni497 authored Jul 16, 2024
1 parent dac8f03 commit d4377aa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

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

## [1.4.0] - 2023-07-11
Expand Down
1 change: 1 addition & 0 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -14254,6 +14254,7 @@ const allowedTsSuppressions = [
"react/no-array-index-key",
"react/no-unused-prop-types",
"react-hooks/exhaustive-deps",
"max-lines",
];
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 @@ -29,6 +29,7 @@ const allowedTsSuppressions = [
"react/no-array-index-key",
"react/no-unused-prop-types",
"react-hooks/exhaustive-deps",
"max-lines",
];
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 d4377aa

Please sign in to comment.