stylelint-processor-styled-components
Version:
A stylelint processor for styled-components
21 lines (16 loc) • 297 B
JavaScript
import styled from 'styled-components'
const Button1 = styled.button`
color: red;
`;
// stylelint-disable
const Button2 = styled.button`
color: red;
`;
// stylelint-enable
const Button3 = styled.button`
color: red;
`;
// stylelint-disable
const Button4 = styled.button`
color: red;
`;