Skip to content

Files

Latest commit

 

History

History
21 lines (15 loc) · 248 Bytes

no-parsing-error.md

File metadata and controls

21 lines (15 loc) · 248 Bytes

Pattern: Invalid CSS syntax

Issue: -

Description

Disallows CSS parsing errors in <style> tags to ensure valid stylesheet syntax.

Examples

<style scoped>
/* ✗ BAD */
.item {

/* ✓ GOOD */
.item {
  color: blue;
}
</style>