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.

issues.md 3.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. # Managing issues
  2. We manage issues consistently for the benefit of ourselves and our users.
  3. ## Labels
  4. Use [labels](https://github.com/stylelint/stylelint/labels).
  5. When you first triage an issue, you should:
  6. - add one of the `status: needs *` labels, e.g. `status: need discussion`
  7. - don't add any other label
  8. After triage, you should add:
  9. - _one_ of the non-need `status: *` labels, e.g. `status: ready to implement`
  10. - _zero or one_ of the `type: *` labels, e.g. `status: new rule`
  11. - _zero, one or more_ of the `syntax: *` labels, e.g. `syntax: scss`
  12. - optionally, the `good first issue`, `help wanted`, `priority: high` and `upstream` labels
  13. ## Milestones
  14. Use [milestones](https://github.com/stylelint/stylelint/milestones).
  15. You should:
  16. - use the `future-major` milestone for issues that introduce breaking changes
  17. - optionally, create version milestones (e.g. `8.x`) to manage upcoming releases
  18. ## Titles
  19. Rename the title into a consistent format.
  20. You should:
  21. - lead with the [CHANGELOG group names](pull-requests.md), but in the present tense:
  22. - "Remove y", e.g. "Remove unit-disallowed-list"
  23. - "Deprecate x in y", e.g. "Deprecate resolvedNested option in selector-class-pattern"
  24. - "Add y", e.g. "Add unit-disallowed-list"
  25. - "Add x to y", e.g. "Add ignoreProperties: [] to property-disallowed-list"
  26. - "Fix false positives/negatives for x in y", e.g. "Fix false positives for Less mixins in color-no-hex"
  27. - use `*` if the issue applies to a group of rules, e.g. "Fix false negatives for SCSS variables in selector-\*-pattern"
  28. ## Saved replies
  29. You should use [saved replies](https://help.github.com/en/github/writing-on-github/working-with-saved-replies).
  30. ### Close an issue
  31. That doesn't use a template:
  32. ```md
  33. Thank you for creating this issue. However, issues need to follow one of our templates so that we can clearly understand your particular circumstances.
  34. Please help us help you by [recreating the issue](https://github.com/stylelint/stylelint/issues/new/choose) using one of our templates.
  35. ```
  36. That is best-suited as a plugin:
  37. ```md
  38. Thank you for your suggestion. I think this is best-suited as a [plugin](https://stylelint.io/developer-guide/plugins).
  39. ```
  40. ### Label as ready to implement
  41. That fixes a bug in a rule:
  42. ```md
  43. I've labeled the issue as ready to implement. Please consider [contributing](https://stylelint.io/contributing) if you have time.
  44. There are [steps on how to fix a bug in a rule](https://stylelint.io/developer-guide/rules#fix-a-bug-in-a-rule) in the Developer guide.
  45. ```
  46. That adds a new option to a rule:
  47. ```md
  48. I've labeled the issue as ready to implement. Please consider [contributing](https://stylelint.io/contributing) if you have time.
  49. There are [steps on how to add a new option](https://stylelint.io/developer-guide/rules#add-an-option-to-a-rule) in the Developer guide.
  50. ```
  51. That adds a new rule:
  52. ```md
  53. I've labeled the issue as ready to implement. Please consider [contributing](https://stylelint.io/contributing) if you have time.
  54. There are [steps on how to add a new rule](https://stylelint.io/developer-guide/rules#add-a-rule) in the Developer guide.
  55. ```
  56. That is another type of improvement:
  57. ```md
  58. I've labeled the issue as ready to implement. Please consider [contributing](https://stylelint.io/contributing) if you have time.
  59. ```