.stylelintrc.js 439 B

1234567891011121314151617
  1. module.exports = {
  2. extends: ['stylelint-config-standard', 'stylelint-config-prettier'],
  3. defaultSeverity: 'warning',
  4. rules: {
  5. 'function-name-case': null,
  6. 'custom-property-empty-line-before': null,
  7. 'unit-no-unknown': null,
  8. 'declaration-block-no-duplicate-properties': true,
  9. 'value-keyword-case': null,
  10. 'rule-empty-line-before': [
  11. 'always',
  12. {
  13. 'ignore': 'first-nested',
  14. },
  15. ],
  16. },
  17. }