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: 12,
column: 1,
character: 123
},
end: {
line: 12,
column: 13,
character: 135
},
pos: 123,
frame: `
10: }
11:
12: .maybeactive {
^
13: color: green;
14: }`
}]
};