There is a false positive for the rule `vue-scoped-css/no-parsing-error`, when using SCSS and the [Property Declaration Nesting](https://sass-lang.com/documentation/style-rules/declarations/#nesting) feature. ```vue <style lang="scss"> // <-- Parsing error: Expected a pseudo-class or pseudo-element. eslint(vue-scoped-css/no-parsing-error) h1 { border: { style: solid; width: 2px; color: red; } } </style> ```