mirror of
https://github.com/tc39/test262.git
synced 2025-04-08 19:35:28 +02:00
7 lines
145 B
Python
7 lines
145 B
Python
class Check(object):
|
|
'''Base class for defining linting checks.'''
|
|
ID = None
|
|
|
|
def run(self, name, meta, source):
|
|
return True
|