mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 13:33:24 +00:00
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:
@@ -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'])
|
||||
|
||||
Reference in New Issue
Block a user