Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
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.

index.js 1.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. 'use strict';
  2. module.exports = {
  3. rules: {
  4. 'at-rule-no-unknown': true,
  5. 'block-no-empty': true,
  6. 'color-no-invalid-hex': true,
  7. 'comment-no-empty': true,
  8. 'declaration-block-no-duplicate-custom-properties': true,
  9. 'declaration-block-no-duplicate-properties': [
  10. true,
  11. {
  12. ignore: ['consecutive-duplicates-with-different-values'],
  13. },
  14. ],
  15. 'declaration-block-no-shorthand-property-overrides': true,
  16. 'font-family-no-duplicate-names': true,
  17. 'font-family-no-missing-generic-family-keyword': true,
  18. 'function-calc-no-invalid': true,
  19. 'function-calc-no-unspaced-operator': true,
  20. 'function-linear-gradient-no-nonstandard-direction': true,
  21. 'keyframe-declaration-no-important': true,
  22. 'media-feature-name-no-unknown': true,
  23. 'named-grid-areas-no-invalid': true,
  24. 'no-descending-specificity': true,
  25. 'no-duplicate-at-import-rules': true,
  26. 'no-duplicate-selectors': true,
  27. 'no-empty-source': true,
  28. 'no-extra-semicolons': true,
  29. 'no-invalid-double-slash-comments': true,
  30. 'no-invalid-position-at-import-rule': true,
  31. 'no-irregular-whitespace': true,
  32. 'property-no-unknown': true,
  33. 'selector-pseudo-class-no-unknown': true,
  34. 'selector-pseudo-element-no-unknown': true,
  35. 'selector-type-no-unknown': [
  36. true,
  37. {
  38. ignore: ['custom-elements'],
  39. },
  40. ],
  41. 'string-no-newline': true,
  42. 'unit-no-unknown': true,
  43. },
  44. };