]> gitweb.factorcode.org Git - factor.git/blob - CONTRIBUTING.md
factor: remove extra whitespace
[factor.git] / CONTRIBUTING.md
1 # Contributing to Factor
2
3 The Factor monorepo contains almost all libraries developed in Factor alongside the Factor distribution.
4 Contributions of any form are welcome.
5
6 Contributing to Factor requires a bleeding-edge build. You can clone the repository and run `./build.sh update` to get one.
7
8 If you have any questions beyond the scope of this document, feel free to ask the [community.](https://www.concatenative.org/wiki/view/Factor/Community)
9
10 # Bug reports
11 If you have found a bug in the Factor distribution,
12 - Kindly search the [existing issues](https://github.com/factor/factor/issues?q=is%3Aissue) for dupes. Check the closed issues as well, since regression can happen.
13 - Always file bugs with a platform name and architecture, since issues may be constrained to one.
14 - For bugs, always add a code sample, and a reproducible test case.
15   - Always paste the text of the snippet and the text from the error that Factor produces. Screenshots are useful, but text is important.
16   - If the text cannot feasibly fit in a github issue, use the [Factor pastebin](https://paste.factorcode.org/) or a GitHub gist to host your code.
17 - If you are adding a feature request, detail on how the feature should be implemented, and add links to existing libraries or papers that will aid with implementing the feature.
18
19 # Submitting a patch
20 - Commits must always have vocabulary names prefixed to them. The commit history has many good examples of this.
21 - All contributions to Factor are mandatorily under the BSD license. In new vocabularies, you must add a comment stating the same. You can use your real name or your GitHub nickname. See [this](https://github.com/factor/factor/blob/master/core/alien/alien.factor) for an example. 
22 - Do not submit features without creating a feature request first.
23 - The repository is structured as follows:
24   - `basis`: Vocabularies which are well-tested, well-documented, and have a wide variety of uses.
25   - `core`: The set of libraries which are most integral for compiling and boostrapping Factor. **Do not modify core unless it is absolutely necessary.** You will need to re-bootstrap to check your changes.
26   - `extra`: Vocabularies which are in beta. May be unstable or broken. This is where most contributions start. - `misc`: Code which is not written in Factor, but holds significance to Factor users. Some editor-specific plugins reside here.
27   - `vm`: Factor C++ VM files.
28   - `work`: Store your personal work here. You cannot contribute changes made to work, as it is reserved for the user.
29 - Style guidelines are as follows:
30   - Factor code is written in small definitions that reference smaller definitions. Keep words as small as possible by factoring out core parts.
31   - Use 4 spaces of indentation if your definitions take multiple lines.
32   - Apart from these guidelines, follow the style of the file you are editing.
33 - `<PRIVATE` blocks are highly recommended for helper words. They are a leaky abstraction, but they make the documentation tidier.
34 - Always run `lint` and `help.lint` on your changes before submitting them.