@import "a.css"; @import "a.css"; /* S1128 | no-duplicate-at-import-rules | Doesn't raise for LESS */ a:unknown { /* S4659 | selector-pseudo-class-no-unknown */ background-color: #ffw; /* S4647 | color-no-invalid-hex */ width: 100pixels; /* S4653 | unit-no-unknown */ /* */ /* S4663 | comment-no-empty */ content: "first second"; /* S4652 | string-no-newline */ color: pink; color: orange; /* S4656 | declaration-block-no-duplicate-properties */ font: 1em/1.3 Times; /* S4649 | font-family-no-missing-generic-family-keyword */ font-family: serif, serif; /* S4648 | font-family-no-duplicate-names */ heigth: 100%; /* S4654 | property-no-unknown */ padding-left: 10px; padding: 20px; /* S4657 | declaration-block-no-shorthand-property-overrides */ } .class1 { width: 100px; } .class1 { /* S4666 | no-duplicate-selectors */ padding: 100px; } a { color: pink;; /* S1116 | no-extra-semicolons */ } a::pseudo { /* S4660 | selector-pseudo-element-no-unknown */ color: red; } unknown { /* S4670 | selector-type-no-unknown */ color: black; } @unknown { /* S4662 | at-rule-no-unknown */ width: 1px; } @keyframes important1 { from { margin-top: 50px; } to { margin-top: 100px !important; /* S4655 | keyframe-declaration-no-important */ } } .class2 { } /* S4658 | block-no-empty */