diff options
author | Ravi Shankar <wafflespeanut@gmail.com> | 2016-11-11 15:34:29 +0530 |
---|---|---|
committer | Ravi Shankar <wafflespeanut@gmail.com> | 2016-11-11 19:54:34 +0530 |
commit | 34955e0bf882efdd61fde3708495fbf75734c8bc (patch) | |
tree | b8f0b2c32ef0311d8d1f4c7192f711174a7c1224 /python/tidy/servo_tidy_tests/lints/no_lint.py | |
parent | 8385c9ae79af76e636cb6bac2366b8fea6c83a9d (diff) | |
download | servo-34955e0bf882efdd61fde3708495fbf75734c8bc.tar.gz servo-34955e0bf882efdd61fde3708495fbf75734c8bc.zip |
Add tests for the new LintRunner
Diffstat (limited to 'python/tidy/servo_tidy_tests/lints/no_lint.py')
-rw-r--r-- | python/tidy/servo_tidy_tests/lints/no_lint.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/python/tidy/servo_tidy_tests/lints/no_lint.py b/python/tidy/servo_tidy_tests/lints/no_lint.py new file mode 100644 index 00000000000..e9f84aa9f3c --- /dev/null +++ b/python/tidy/servo_tidy_tests/lints/no_lint.py @@ -0,0 +1,5 @@ +from servo_tidy.tidy import LintRunner + +class Linter(LintRunner): + def run(self): + pass |