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