.stylelintrc.json 252 B

12345678910111213141516
  1. {
  2. "plugins": [
  3. "stylelint-use-logical-spec"
  4. ],
  5. "overrides": [
  6. {
  7. "customSyntax": "postcss-styled-syntax",
  8. "files": [
  9. "**/*.{js,ts,jsx,tsx}"
  10. ]
  11. }
  12. ],
  13. "rules": {
  14. "liberty/use-logical-spec": "always"
  15. }
  16. }