You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
781 B

  1. module.exports = {
  2. extends: ['stylelint-config-standard-scss'],
  3. ignoreFiles: [
  4. 'app/javascript/styles/mastodon/reset.scss',
  5. 'node_modules/**/*',
  6. 'vendor/**/*',
  7. ],
  8. rules: {
  9. 'at-rule-empty-line-before': null,
  10. 'color-function-notation': null,
  11. 'color-hex-length': null,
  12. 'declaration-block-no-redundant-longhand-properties': null,
  13. 'no-descending-specificity': null,
  14. 'no-duplicate-selectors': null,
  15. 'number-max-precision': 8,
  16. 'property-no-unknown': null,
  17. 'property-no-vendor-prefix': null,
  18. 'selector-class-pattern': null,
  19. 'selector-id-pattern': null,
  20. 'value-keyword-case': null,
  21. 'value-no-vendor-prefix': null,
  22. 'scss/dollar-variable-empty-line-before': null,
  23. 'scss/no-global-function-names': null,
  24. },
  25. };