You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/test/css/samples/global-compound-selector/_config.js

28 lines
392 B

export default {
warnings: [
{
code: 'css-unused-selector',
frame: `
16: }
17:
18: .bar:global(.foo) {
^
19: color: blue;
20: }
`,
message: 'Unused CSS selector ".bar:global(.foo)"',
pos: 210,
start: {
character: 210,
column: 1,
line: 18
},
end: {
character: 227,
column: 18,
line: 18
}
}
]
};