Skip to content
Bhsd edited this page Apr 18, 2026 · 4 revisions

⚠️ By default, this rule reports template arguments in a non-template context as warnings.

Examples

Examples of incorrect code for { "no-arg": 2 }:

{{{Foo}}}

Examples of correct code for { "no-arg": 2 }:

<includeonly>{{{Foo}}}</includeonly>

Examples of correct code for transclusion:

// no-arg
var wikitext = "{{{Foo}}}";
assert.deepStrictEqual(Parser.parse(wikitext, true).lint(), []);

Clone this wiki locally