docs: add development guide including one first guideline wrt lua vs. sh usage (#951)

This commit is contained in:
Christof Schulze 2016-11-29 20:45:25 +01:00 committed by Matthias Schiffer
parent 6ebf7120df
commit 54109702bd
1 changed files with 9 additions and 0 deletions

View File

@ -47,3 +47,12 @@ and you can try rebasing it onto the new `base` branch yourself and after that c
Always call `make update-patches` after making changes to a module repository as `make update` will overwrite your
commits, making `git reflog` the only way to recover them!
Development Guidelines
----------------------
lua should be used instead of sh whenever sensible. The following criteria
should be considered:
- Is the script doing more than just executing external commands? if so, use lua
- Is the script parsing/editing json-data? If so, use lua for speed