aboutsummaryrefslogtreecommitdiffstats
path: root/lib/sol2/CONTRIBUTING.md
diff options
context:
space:
mode:
authorAndy <drumsetmonkey@gmail.com>2019-08-29 13:07:45 -0400
committerAndy <drumsetmonkey@gmail.com>2019-08-29 13:07:45 -0400
commit4ac4b280abf2ffa28caa5a532353115a3033444f (patch)
tree2a13d658bb454360b2faf401244bb0321d3460d4 /lib/sol2/CONTRIBUTING.md
parente9758416b18b27a65337c28d9641afc0ee89b34b (diff)
parent7a46fa2dd3dad3f038bf8e7339bc67abca428ae6 (diff)
Started creating scripting library/namespace and added sol2 for interfacing
Diffstat (limited to 'lib/sol2/CONTRIBUTING.md')
-rw-r--r--lib/sol2/CONTRIBUTING.md27
1 files changed, 27 insertions, 0 deletions
diff --git a/lib/sol2/CONTRIBUTING.md b/lib/sol2/CONTRIBUTING.md
new file mode 100644
index 0000000..c6de308
--- /dev/null
+++ b/lib/sol2/CONTRIBUTING.md
@@ -0,0 +1,27 @@
+## Contributing to sol
+
+Looking to contribute to sol? Well, first thing I want to mention is thank you!
+Second of all, this is probably where you should look :)
+
+## Reporting Issues
+
+If you found a bug, please make sure to make an issue in the issue tracker.
+
+The guidelines for reporting a bug are relatively simple and are as follows:
+
+1. Produce a simple, short, compilable test case that reproduces your problem.
+2. Make a descriptive title that summarises the bug as a whole.
+3. Explain the bug in as much detail as you can in the body of the issue.
+
+If you have all of those requirements set, then your issue reporting is golden.
+
+## Submitting a pull request
+
+Submitting a pull request is fairly simple, just make sure it focuses on a single aspect and doesn't
+manage to have scope creep and it's probably good to go. It would be incredibly lovely if the style is
+consistent to those found in the repository.
+
+To help with this, a `.clang-format` is included. Please run it on your code before you push anything.
+
+If you don't meet all of these style guidelines, don't fret. I'll probably fix it. But please
+do make an effort to actually meet them. Otherwise I'm more likely to reject the pull request.