You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`div > span`| Direct child (span directly inside div) |
295
+
|`[style]`| Attribute presence |
296
+
|`input[type=hidden]`| Attribute value |
297
+
|`img:not([alt])`| Negated attribute |
298
+
|`div, span`| Comma-separated alternatives |
299
+
300
+
The `>` (child) combinator is kind-transparent: `div > span` matches even if a Mustache section sits between them (e.g. `<div>{{#show}}<span>{{/show}}</div>`), and `#a > #b` matches across intervening HTML elements.
301
+
251
302
### Disabling Lint Rules
252
303
253
-
Disable a configurable lint rule for an entire file with an inline comment:
304
+
Disable a lint rule for an entire file with an inline comment:
The comment can appear anywhere in the file. Only configurable rules (listed above) can be disabled. Use multiple comments to disable multiple rules.
311
+
The comment can appear anywhere in the file. Both built-in and custom rules can be disabled by name/id. Use multiple comments to disable multiple rules.
0 commit comments