mirror of https://github.com/zulip/zulip.git
lint: Limit JS assert rule to web/tests.
This commit is contained in:
parent
5d69a54849
commit
1d2cf734f3
|
@ -214,6 +214,7 @@ js_rules = RuleList(
|
||||||
{
|
{
|
||||||
"pattern": r"assert\(",
|
"pattern": r"assert\(",
|
||||||
"description": "Use 'assert.ok' instead of 'assert'. We avoid the use of 'assert' as it can easily be confused with 'assert.equal'.",
|
"description": "Use 'assert.ok' instead of 'assert'. We avoid the use of 'assert' as it can easily be confused with 'assert.equal'.",
|
||||||
|
"include_only": {"web/tests/"},
|
||||||
"good_lines": ["assert.ok(...)"],
|
"good_lines": ["assert.ok(...)"],
|
||||||
"bad_lines": ["assert(...)"],
|
"bad_lines": ["assert(...)"],
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue