stylelint.config.js 477 B

12345678910111213141516171819
  1. /*eslint-env node*/
  2. module.exports = {
  3. extends: [
  4. 'stylelint-config-recommended',
  5. 'stylelint-config-styled-components',
  6. 'stylelint-config-prettier',
  7. ],
  8. rules: {
  9. 'declaration-colon-newline-after': null,
  10. 'block-no-empty': null,
  11. // This is formatting related
  12. 'declaration-bang-space-before': null,
  13. // Doesn't work when we use values from theme
  14. 'unit-no-unknown': null,
  15. 'font-family-no-missing-generic-family-keyword': null,
  16. },
  17. };