Skip to content

Commit 4015355

Browse files
fix(test): add eslint-disable for unused-vars in ValidationDecorators
1 parent 449c600 commit 4015355

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

test/ValidationDecorators.test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ import { AssertTruePipe } from "../src/controller/decorators/validation/pipes/As
1616
describe("Validation Decorators", () => {
1717
it("should add validation pipes to metadata (Min/Max)", () => {
1818
class TestController {
19+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
1920
method(@Query("id") @Min(1) @Max(10) id: number) {}
2021
}
2122

0 commit comments

Comments
 (0)