microsoft / vscode-custom-data

Documentation and sample for using VS Code custom data format
MIT License
188 stars 73 forks source link

Missing "r" property from attribute list #46

Open diervo opened 2 years ago

diervo commented 2 years ago

The following code should be valid as per spec from SVG2.0: https://www.w3.org/TR/SVG/geometry.html#RProperty

.vertex {
        filter: drop-shadow(rgba(207, 171, 255, 0.9) 0px 0px 20px);
        fill: #b082ee;
        r: 20;
        stroke: 5;
    }

Unknown property: 'r' lit-plugin(no-invalid-css)

I'm happy to do a PR, but unclear what's the process and pipeline to add it correctly.