mirror of https://github.com/zulip/zulip.git
lint: Exclude frontend_tests/node_tests from $().text rule.
This commit is contained in:
parent
ccba727919
commit
0596632457
|
@ -226,7 +226,8 @@ def build_custom_checkers(by_lang):
|
||||||
'tools/generate-custom-icon-webfont']),
|
'tools/generate-custom-icon-webfont']),
|
||||||
'description': 'console.log and similar should not be used in webapp'},
|
'description': 'console.log and similar should not be used in webapp'},
|
||||||
{'pattern': r'''[.]text\(["'][a-zA-Z]''',
|
{'pattern': r'''[.]text\(["'][a-zA-Z]''',
|
||||||
'description': 'Strings passed to $().text should be wrapped in i18n.t() for internationalization'},
|
'description': 'Strings passed to $().text should be wrapped in i18n.t() for internationalization',
|
||||||
|
'exclude': set(['frontend_tests/node_tests/'])},
|
||||||
{'pattern': r'''compose_error\(["']''',
|
{'pattern': r'''compose_error\(["']''',
|
||||||
'description': 'Argument to compose_error should be a literal string enclosed '
|
'description': 'Argument to compose_error should be a literal string enclosed '
|
||||||
'by i18n.t()'},
|
'by i18n.t()'},
|
||||||
|
|
Loading…
Reference in New Issue