We welcome all contributions, big and small. After all, the best part of open source is the community support.
We just have a few guidelines we would like to follow when you make contributions. Please refer to this guide before making contributions so that we can ensure that the process of contributions runs smoothly.
These guidelines apply towards all changes you'd like to make to any
of the legal documents that are under the data folder.
-
Please ensure that each individual pull request you submit is a single fix or change. This is helpful when we want to organize contributions and pinpoint when a change happened.
-
Please verify that your changes do not have any spelling or grammatical errors. We all make mistakes, we would just like to minimize the frequency of such.
-
Please ensure that you use the proper command words that is appropriate for legal documents and that your changes are clear enough to be interpreted by anyone without extra context.
We welcome all translations for our documents as the purpose of this project is to ensure that everyone can understand the documents. But please follow these guidelines when submitting translations:
-
Each language must have a folder of its own inside of the 'data' folder. The folder must be two lower case characters that describes the language within the folder using the official language codes.
-
Please ensure that your contributions are only made to the files inside of the respectful language folder. This helps avoid conflicting changes to files.
-
Please only translate documents to languages that you are comfortable with. We have no way to guarantee that all documents are aptly translated but we would like to hold all translations up to a standard of quality.
-
Please do not translate the legal document itself. Only the explainations should be multilingual. The documents themselves are legally binding and will only be written and enforced in Canadian English.
The issue tracker is the preferred channel for bug reports, features requests and submitting pull requests, but please follow the individual guidelines for each of those types of issues.
A bug is a demonstrable problem that is caused by the code in the repository. Good bug reports are extremely helpful, so thanks!
Guidelines for bug reports:
-
Use the GitHub issue search — check if the issue has already been reported.
-
Check if the issue has been fixed — try to reproduce it using the latest
masteror development branch in the repository. -
Isolate the problem — ideally create a reduced test case and a live example.
A good bug report shouldn't leave others needing to chase you up for more information. Please try to be as detailed as possible in your report. What is your environment? What steps will reproduce the issue? What browser(s) and OS experience the problem? Do other browsers show the bug differently? What would you expect to be the outcome? All these details will help people to fix any potential bugs.
Example:
Short and descriptive example bug report title
A summary of the issue and the browser/OS environment in which it occurs. If suitable, include the steps required to reproduce the bug.
- This is the first step
- This is the second step
- Further steps, etc.
<url>- a link to the reduced test caseAny other information you want to share that is relevant to the issue being reported. This might include the lines of code that you have identified as causing the bug, and potential solutions (and your opinions on their merits).
Feature requests are welcome. But take a moment to find out whether your idea fits with the scope and aims of the project. It's up to you to make a strong case to convince the project's developers of the merits of this feature. Please provide as much detail and context as possible.
Good pull requests—patches, improvements, new features—are a fantastic help. They should remain focused in scope and avoid containing unrelated commits.
Please ask first before embarking on any significant pull request (e.g. implementing features, refactoring code, porting to a different language), otherwise you risk spending a lot of time working on something that the project's developers might not want to merge into the project.
Please adhere to the coding guidelines used throughout the project (indentation, accurate comments, etc.) and any other requirements (such as test coverage).
Please do not edit any auto-generated files manually.
Adhering to the following process is the best way to get your work included in the project:
-
Fork the project, clone your fork, and configure the remotes:
# Clone your fork of the repo into the current directory git clone https://github.com/<your-username>/bootstrap.git # Navigate to the newly cloned directory cd bootstrap # Assign the original repo to a remote called "upstream" git remote add upstream https://github.com/twbs/bootstrap.git
-
If you cloned a while ago, get the latest changes from upstream:
git checkout master git pull upstream master
-
Create a new topic branch (off the main project development branch) to contain your feature, change, or fix:
git checkout -b <topic-branch-name>
-
Commit your changes in logical chunks.
-
Open a Pull Request with a clear title and description against the
masterbranch.
IMPORTANT: By submitting a patch, you agree to allow the project owners to license your work under the terms of the MIT License (if it includes code changes) and under the terms of the Creative Commons Zero 1.0 License (if it includes changes in legal documents).
- Use tags and elements appropriate for an HTML5 doctype (e.g., self-closing tags).
- Use CDNs and protocol-relative URLs when possible.
- Use WAI-ARIA attributes in documentation examples to promote accessibility.
- When feasible, default color palettes should comply with WCAG color contrast guidelines.
- Except in rare cases, don't remove default
:focusstyles (via e.g.outline: none;) without providing alternative styles. See this A11Y Project post for more details.
- No semicolons (in client-side JS)
- 2 spaces (no tabs)
- strict mode
- "Attractive"
By contributing your code, you agree to license your contribution under the MIT License. By contributing to the legal documentation, you agree to license your contribution under the Creative Commons Zero 1.0 License.
This contribution guide is a modified version of the official Bootstrap Contribution Guide