0.7.0 • Published 2 years ago
stylelint-config-react-native-styled-components v0.7.0
stylelint-config-react-native-styled-components
Shareable stylelint config for styled components when using React Native.
Installation and usage
Install stylelint-config-react-native-styled-components (and stylelint + stylelint-react-native).
For stylelint v15+ (recommended)
yarn add \
stylelint \
stylelint-react-native \
stylelint-config-react-native-styled-components \
postcss-styled-syntax --devor
npm install \
stylelint \
stylelint-react-native \
stylelint-config-react-native-styled-components \
postcss-styled-syntax --save-devCreate the .stylelintrc config file (or open the existing one), extend stylelint-config-react-native-styled-components config, and defined the customSyntax.
{
"extends": ["stylelint-config-react-native-styled-components"],
"customSyntax": "postcss-styled-syntax"
}For stylelint v14 and below
yarn add \
stylelint \
stylelint-react-native \
stylelint-processor-styled-components \
stylelint-config-react-native-styled-components --devor
npm install \
stylelint \
stylelint-react-native \
stylelint-processor-styled-components \
stylelint-config-react-native-styled-components --save-devCreate the .stylelintrc config file (or open the existing one) add the stylelint processor and extend stylelint-config-react-native-styled-components config.
{
"processors": ["stylelint-processor-styled-components"],
"extends": ["stylelint-config-react-native-styled-components"]
}