mirror of https://github.com/sveltejs/svelte
fix detection of unused partially global CSS selectors (#4332)
parent
70d1795088
commit
be9b79f805
@ -0,0 +1,24 @@
|
||||
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',
|
||||
pos: 9,
|
||||
start: {
|
||||
character: 9,
|
||||
column: 1,
|
||||
line: 2
|
||||
}
|
||||
}]
|
||||
};
|
@ -0,0 +1,5 @@
|
||||
<style>
|
||||
:global(.foo) .bar {
|
||||
color: red;
|
||||
}
|
||||
</style>
|
Loading…
Reference in new issue