blob: 01508ea0027a19903bc3d0984385dd0ff1167410 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
/* Adding one standard issue to make sure we analyze this file */
@unknown { /* S4662 | at-rule-no-unknown */
width: 1px;
}
/* ignored by S4662 | at-rule-no-unknown */
@value colors: "./colors.css";
@value blue, red, green from colors;
.className {
color: green;
background: red;
}
.otherClassName {
/* ignored by S4654 | property-no-unknown */
composes: className;
color: yellow;
}
/* ignored by S4659 | selector-pseudo-class-no-unknown */
:export {
/* ignored by S4654 | property-no-unknown */
exportedKey: exportedValue;
/* ... */
}
/* ignored by S4659 | selector-pseudo-class-no-unknown */
:import("path/to/dep.css") {
/* ignored by S4654 | property-no-unknown */
localAlias: keyFromDep;
/* ... */
}
|