diff options
author | 2018-11-13 18:36:37 +0100 | |
---|---|---|
committer | 2018-11-13 18:36:37 +0100 | |
commit | 5f867c00b4b99e7ffd9d0c82d87cb3f53ebb8165 (patch) | |
tree | 7fd3f5ffbcc944efe3c850bd1f8b8679a1312c01 | |
parent | c15b25a07d915336696ff5f2c34a75d9b7a2237c (diff) | |
download | rss-bridge-5f867c00b4b99e7ffd9d0c82d87cb3f53ebb8165.tar.gz rss-bridge-5f867c00b4b99e7ffd9d0c82d87cb3f53ebb8165.tar.zst rss-bridge-5f867c00b4b99e7ffd9d0c82d87cb3f53ebb8165.zip |
[CONTRIBUTING] Add new coding style policies
-rw-r--r-- | .github/CONTRIBUTING.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 18fc93f7..ec47ab0d 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -43,5 +43,7 @@ Note that all pull-requests must pass all tests before they can be merged. * [Use PascalCase for class names](https://github.com/RSS-Bridge/rss-bridge/wiki/Classes#use-pascalcase-for-class-names) * [Do not use final statements inside final classes](https://github.com/RSS-Bridge/rss-bridge/wiki/Classes#do-not-use-final-statements-inside-final-classes) * [Do not override methods to call their parent](https://github.com/RSS-Bridge/rss-bridge/wiki/Classes#do-not-override-methods-to-call-their-parent) + * [abstract and final declarations MUST precede the visibility declaration](https://github.com/RSS-Bridge/rss-bridge/wiki/Classes#abstract-and-final-declarations-must-precede-the-visibility-declaration) + * [static declaration MUST come after the visibility declaration](https://github.com/RSS-Bridge/rss-bridge/wiki/Classes#static-declaration-must-come-after-the-visibility-declaration) * [Casting](https://github.com/RSS-Bridge/rss-bridge/wiki/Casting) * [Do not add spaces when casting](https://github.com/RSS-Bridge/rss-bridge/wiki/Casting#do-not-add-spaces-when-casting) |