mirror of https://github.com/tc39/test262.git
7 lines
146 B
Python
7 lines
146 B
Python
|
class Check(object):
|
||
|
'''Base class for defining linting checks.'''
|
||
|
ID = None
|
||
|
|
||
|
def run(self, name, meta, source):
|
||
|
return True
|