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.

README.md 947B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. # no-extra-semicolons
  2. Disallow extra semicolons.
  3. <!-- prettier-ignore -->
  4. ```css
  5. a { color: pink;; }
  6. /** ↑
  7. * This semicolons */
  8. ```
  9. This rule ignores semicolons after Less mixins.
  10. The [`fix` option](../../../docs/user-guide/usage/options.md#fix) can automatically fix all of the problems reported by this rule.
  11. ## Options
  12. ### `true`
  13. The following patterns are considered violations:
  14. <!-- prettier-ignore -->
  15. ```css
  16. @import "x.css";;
  17. ```
  18. <!-- prettier-ignore -->
  19. ```css
  20. @import "x.css";
  21. ;
  22. ```
  23. <!-- prettier-ignore -->
  24. ```css
  25. a {
  26. color: pink;;
  27. }
  28. ```
  29. <!-- prettier-ignore -->
  30. ```css
  31. a {
  32. ;color: pink;
  33. }
  34. ```
  35. <!-- prettier-ignore -->
  36. ```css
  37. a {
  38. color: pink;
  39. ;
  40. }
  41. ```
  42. <!-- prettier-ignore -->
  43. ```css
  44. a {
  45. color: red;
  46. }
  47. ;
  48. b {
  49. color: white;
  50. }
  51. ```
  52. The following patterns are _not_ considered violations:
  53. <!-- prettier-ignore -->
  54. ```css
  55. @import "x.css";
  56. ```
  57. <!-- prettier-ignore -->
  58. ```css
  59. a {
  60. color: pink;
  61. }
  62. ```