stylelint-processor-styled-components
Version:
A stylelint processor for styled-components
19 lines (15 loc) • 324 B
JavaScript
import styled from 'styled-components'
// stylelint-disable-next-line
const Button1 = styled.button`
color: red;
`;
/* stylelint-disable */
const Button2 = styled.button`
color: red;
`;
/* stylelint-enable */
// stylelint-disable-next-line
/* stylelint-disable-line */
const Button3 = styled.button`
color: red;
`;