mirror of https://github.com/sveltejs/svelte
Handle empty classes when pruning unused styles - fixes #997
parent
0be3211c4f
commit
36718e79bd
@ -0,0 +1,20 @@
|
|||||||
|
export default {
|
||||||
|
cascade: false,
|
||||||
|
|
||||||
|
warnings: [{
|
||||||
|
filename: "SvelteComponent.html",
|
||||||
|
message: "Unused CSS selector",
|
||||||
|
loc: {
|
||||||
|
line: 4,
|
||||||
|
column: 1
|
||||||
|
},
|
||||||
|
pos: 31,
|
||||||
|
frame: `
|
||||||
|
2:
|
||||||
|
3: <style>
|
||||||
|
4: .x {
|
||||||
|
^
|
||||||
|
5: color: red;
|
||||||
|
6: }`
|
||||||
|
}]
|
||||||
|
};
|
@ -0,0 +1,7 @@
|
|||||||
|
<div class=""></div>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
.x {
|
||||||
|
color: red;
|
||||||
|
}
|
||||||
|
</style>
|
Loading…
Reference in new issue