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.

28 lines
877 B

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