Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 331 Bytes

File metadata and controls

25 lines (18 loc) · 331 Bytes

at-use-no-unnamespaced

Disallow usage of @use without a namespace.

@use "foo" as *;
/**           ↑
 * Disallow this */

The following patterns are considered warnings:

@use "foo" as *;

The following patterns are not considered warnings:

@use "foo";
@use "foo" as bar;