You should be very specific about what it is you want fixed. You’re doing well in your bug reports in identifying what is wrong … but looking at your two bug reports, it isn’t completely clear what you want to happen. There are two best practices for reporting bugs that you might find helpful:
- Minimum reproducible case
- Steps to reproduce
Minimum Reproducible Case
This is boiling down the bug to it’s smallest possible representation. For the new bug, it would seem to be:
text-align: left;
You don’t want to confuse the issue with whitespace between the attribute name and the colon. You want to direct attention to the bug with no distractions.
Steps to Reproduce
When describing behavior that is undesirable, you should have very specific steps that reproduce the bug every time (or very, very nearly so) and then finish with what is expected and what is actually happening. For example:
- Open Atom
- Create a new SASS file
- Enter the text:
text-align: left;
Expected: The text text-align
to be classified as entity.name.tag.scss
Actual: The text text
is classified as entity.name.tag.scss
and -align
is not classified
Being very clear like this helps the person fix what is actually the problem in your eyes.
Hope this helps!
Edit: Also added a link to this post from the Best Practices FAQ.