The following is a set of guidelines for contributing to this project. These are not rules, use your best judgment and feel free to propose changes to this document in a pull request.
This project adheres to the Contributor Covenant code of conduct. By participating, you are expected to uphold this code. Please report any unacceptable behavior to [email protected].
This section guides you through submitting a bug report for Atom. Following these guidelines helps maintainers and the community understand your report, reproduce the behavior, and find related reports.
- Before creating bug reports, please check the existing issues as you might find out that one has already been created by another user.
- When you are creating a bug report, please provide a clear and descriptive title.
- Please include as many details as possible in your report. Remember, in order to fix the issue, we must first be able to reproduce it.
- The use of images, GIFs, or any other form of media is not only allowed, it's encouraged.
- Include any relevant details about your configuration and environment.
Users provide the best insight for improving a product. So always feel free to suggest improvements, feedback, and give the developers an idea of what new features you'd like to see in the future.
Don't forget, this is one of the greatest benefits of open-source development!
If you'd like to submit an enhancement request, please include the following information:
- Current project version (check that you are using the latest version)
- How would this enhancement benefit most users?
- Do you have any examples of other applications that feature this enhancement?
- Relevant details about your configuration and environment.
- Note: Don't forget to tag your post with the Enhancement label.
Working on your first Pull Request? You can learn how from this free series How to Contribute to an Open Source Project on GitHub
- Provide as much information as possible on the changes made to existing code.
- Include thoughtfully-worded, well-structured commit messages and comments.
- Include screenshots and animated GIFs in your pull request whenever possible.
- When addressing an existing issue, please include an issue mention in the description of your pull request.
- End files with a newline.
- Avoid platform-dependent code on cross-platform applications.
- Ensure that submitted code follows the style guidelines specified in the Styleguide below.
- Do your best to conform the tense to that of the existing commits. ("Add feature" not "Added feature" or vice versa)
- Use the imperative mood ("Move cursor to..." not "Moves cursor to...")
- Consider starting the commit message with an applicable emoji:
- 🎨
:art:
when making aesthetic improvements - 📐
:triangular_ruler:
when improving the format/structure of the code - 🐎
:racehorse:
when improving performance - 🚱
:non-potable_water:
when plugging memory leaks - 📚
:books:
when writing docs - 🐧
:penguin:
when fixing something on Linux - 🍎
:apple:
when fixing something on macOS - 🏁
:checkered_flag:
when fixing something on Windows - 🐛
:bug:
when fixing a bug - 🔥
:fire:
when removing code or files - 💚
:green_heart:
when fixing the CI build - ✅
:white_check_mark:
when adding tests - 🔒
:lock:
when dealing with security - ⬆️
:arrow_up:
when upgrading dependencies - ⬇️
:arrow_down:
when downgrading dependencies - 👕
:shirt:
when removing linter warnings
- 🎨
- Use spaces around operators
count + 1
instead ofcount+1
- Use camelCase rather than underscore_case naming conventions
myFunction
instead ofmy_function
- Capitalize initialisms and acronyms in names, except for the first word, which
should be lower-case:
getURL
instead ofgetUrl
- Provide comments for important or complex code
- Conform your code to the existing styles to the best of your ability
- Always check that your submission follows The Boy Scout Rule
When submitting major appearance modifications, please submit your modifications as a separate variant(ini file), rather than modifying an existing variant. This will make it easier for the project moderator to decide whether it should be integrated or included as a supplementary variant.
(Adapted from the contribution guidelines of Atom)