summaryrefslogtreecommitdiff
path: root/tools/lint/lib/check.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/lint/lib/check.py')
-rw-r--r--tools/lint/lib/check.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/lint/lib/check.py b/tools/lint/lib/check.py
new file mode 100644
index 000000000..313072822
--- /dev/null
+++ b/tools/lint/lib/check.py
@@ -0,0 +1,6 @@
+class Check(object):
+ '''Base class for defining linting checks.'''
+ ID = None
+
+ def run(self, name, meta, source):
+ return True