X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/92bedbb88156e168cad47e6076af38407df70cce..a793f698f3162866d73e64af1a757fc0348660be:/CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 04ed748b..276137f6 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -18,7 +18,7 @@ are in process of consolodating the style. The following rules apply: * Python code uses the official Python style * indention * SQL use 2 spaces - * all other use files TABs + * all other file types use 4 spaces * [BSD style](https://en.wikipedia.org/wiki/Indent_style#Allman_style) for braces * spaces * spaces before and after equal signs and operators @@ -27,21 +27,22 @@ are in process of consolodating the style. The following rules apply: * leave out space between a function name and bracket but add one between control statement(if, while, etc.) and bracket +The coding style is enforced with PHPCS and can be tested with: -This coding style must be applied to any new or changed code. You are also -welcome to fix the coding style of existing code but please submit separate -PRs for this. +``` + phpcs --report-width=120 --colors */**.php +``` ## Testing Before submitting a pull request make sure that the following tests pass: ``` - cd tests - NOMINATIM_DIR= lettuce -t -Fail features/db features/osm2pgsql + cd test/bdd + behave -DBUILDDIR= db osm2pgsql ``` ``` - cd test-php + cd test/php phpunit ./ ```