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

29 lines
404 B

export default {
props: {
active: true
},
warnings: [{
filename: "SvelteComponent.svelte",
code: `css-unused-selector`,
message: "Unused CSS selector",
start: {
line: 16,
column: 1,
character: 163
},
end: {
line: 16,
column: 13,
character: 175
},
pos: 163,
frame: `
14: }
15:
16: .maybeactive {
^
17: color: green;
18: }`
}]
};