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

30 lines
420 B

export default {
props: {
active: true
},
warnings: [{
filename: 'SvelteComponent.svelte',
code: 'css-unused-selector',
message: 'Unused CSS selector ".maybeactive"',
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: }`
}]
};