From fe0e1c71a70edba056083bee6ff86a596e39871f Mon Sep 17 00:00:00 2001 From: Sam Estep Date: Wed, 21 Apr 2021 08:43:39 -0700 Subject: [PATCH] Add type ignore lint to Makefile (#56587) Summary: Followup to https://github.com/pytorch/pytorch/issues/56290 which adds the new lint to the local runner from https://github.com/pytorch/pytorch/issues/56439. Pull Request resolved: https://github.com/pytorch/pytorch/pull/56587 Test Plan: Same as https://github.com/pytorch/pytorch/issues/56439. Reviewed By: walterddr Differential Revision: D27909889 Pulled By: samestep fbshipit-source-id: 8b67f3bc36c9b5567fe5a9e49904f2cf23a9f135 --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 3e22078c63e3..26a47cd7f071 100644 --- a/Makefile +++ b/Makefile @@ -48,6 +48,7 @@ quick_checks: --step 'Ensure no non-breaking spaces' \ --step 'Ensure canonical include' \ --step 'Ensure no unqualified noqa' \ + --step 'Ensure no unqualified type ignore' \ --step 'Ensure no direct cub include' \ --step 'Ensure correct trailing newlines'