summaryrefslogtreecommitdiff
path: root/tools/lint/lib/checks/features.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/lint/lib/checks/features.py')
-rw-r--r--tools/lint/lib/checks/features.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/tools/lint/lib/checks/features.py b/tools/lint/lib/checks/features.py
index f7cae4894..fdfa57aec 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'