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-with-unused-descendant/_config.js

25 lines
350 B

export default {
warnings: [{
code: 'css-unused-selector',
end: {
character: 27,
column: 19,
line: 2
},
frame: `
1: <style>
2: :global(.foo) .bar {
^
3: color: red;
4: }
`,
message: 'Unused CSS selector ":global(.foo) .bar"',
pos: 9,
start: {
character: 9,
column: 1,
line: 2
}
}]
};