lint: Turn off the CSS checker (officially).

Our CSS checker globs for .css files.  Since the
SCSS cutover, it has been a no-op, so there's no
sense launching it.  See #8894 for details on
future plans.
This commit is contained in:
Steve Howell
2018-07-20 13:38:22 +00:00
committed by showell
parent 010dbcc49f
commit b9c9dd9b5a

View File

@@ -158,7 +158,6 @@ def run():
lint_functions[name] = run_linter
external_linter('add_class', ['tools/find-add-class'], ['js'])
external_linter('css', ['tools/check-css'], ['css'])
external_linter('eslint', ['node', 'node_modules/.bin/eslint', '--quiet', '--cache'], ['js'])
external_linter('tslint', ['node', 'node_modules/.bin/tslint', '-c',
'static/ts/tslint.json'], ['ts'])
@@ -167,6 +166,9 @@ def run():
external_linter('urls', ['tools/check-urls'], ['py'])
external_linter('swagger', ['node', 'tools/check-swagger'], ['yaml'])
# Note that check-css no longer runs due to the SCSS conversion.
# See #8894 for more details.
# Disabled check for imperative mood until it is stabilized
if not args.no_gitlint:
external_linter('commit_messages', ['tools/commit-message-lint'])