aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorVincent Breitmoser <valodim@mugenguild.com>2015-06-18 13:19:44 +0200
committerVincent Breitmoser <valodim@mugenguild.com>2015-06-18 13:19:44 +0200
commit0cfbe4ad06577715bfd9b16aa912a21cb9c64cbc (patch)
tree55e0fec27153eee44ad1865ee8f59a0557af41cb /README.md
parent0cb868ff250e8d86a1a8f8ace79cc18e4cbc721e (diff)
parent2b26f293b8cb03a0b605e3a95365160f5c034329 (diff)
downloadopen-keychain-0cfbe4ad06577715bfd9b16aa912a21cb9c64cbc.tar.gz
open-keychain-0cfbe4ad06577715bfd9b16aa912a21cb9c64cbc.tar.bz2
open-keychain-0cfbe4ad06577715bfd9b16aa912a21cb9c64cbc.zip
Merge branch 'master' into v/multi-decrypt
Diffstat (limited to 'README.md')
-rw-r--r--README.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/README.md b/README.md
index c28d35c98..7a75b5ec8 100644
--- a/README.md
+++ b/README.md
@@ -151,12 +151,13 @@ see http://help.transifex.net/features/client/index.html#user-client
## Coding Style
### Code
-* Indentation: 4 spaces, no tabs
-* Maximum line width for code and comments: 100
-* Opening braces don't go on their own line
+* Indentation: 4 spaces, no tabs.
+* Maximum line width for code and comments: 100.
+* Opening braces don't go on their own line.
* Field names: Non-public, non-static fields start with m.
* Acronyms are words: Treat acronyms as words in names, yielding !XmlHttpRequest, getUrl(), etc.
* Fully Qualify Imports: Do *not* use wildcard-imports such as ``import foo.*;``
+* Android Studio warnings should be fixed, or suppressed if they are incorrect.
The full coding style can be found at http://source.android.com/source/code-style.html