From 8e7213db383b38ef2d009e471b0da88b82272f47 Mon Sep 17 00:00:00 2001 From: Adrian Heine Date: Thu, 28 Dec 2017 23:04:35 +0100 Subject: [PATCH] Remove unused constants in checks/features.py --- tools/lint/lib/checks/features.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/tools/lint/lib/checks/features.py b/tools/lint/lib/checks/features.py index f7cae4894f..fdfa57aec1 100644 --- a/tools/lint/lib/checks/features.py +++ b/tools/lint/lib/checks/features.py @@ -1,12 +1,5 @@ from ..check import Check -_REQUIRED_FIELDS = set(['description']) -_OPTIONAL_FIELDS = set([ - 'author', 'es5id', 'es6id', 'esid', 'features', 'flags', 'includes', - 'info', 'negative', 'timeout' -]) -_VALID_FIELDS = _REQUIRED_FIELDS | _OPTIONAL_FIELDS - class CheckFeatures(Check): '''Ensure tests specify only `features` from a list of valid values.''' ID = 'FEATURES'