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

25 lines
357 B

export default {
warnings: [{
filename: "SvelteComponent.html",
code: `css-unused-selector`,
message: "Unused CSS selector",
start: {
line: 8,
column: 1,
character: 60
},
end: {
line: 8,
column: 5,
character: 64
},
pos: 60,
frame: `
6: }
7:
8: .bar {
^
9: color: blue;
10: }`
}]
};