summaryrefslogtreecommitdiffstats
path: root/CodingStyle.md
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2019-12-23 11:26:19 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2019-12-24 07:06:25 +0900
commit4126409310cdbd53bf01f7f41249ae574fe175b9 (patch)
tree05ec792e50afc3f10f84aae06996cb99a981b315 /CodingStyle.md
parent080def7729895a6d4e152e4bb7d6fe0713b82f6b (diff)
downloadsubsurface-4126409310cdbd53bf01f7f41249ae574fe175b9.tar.gz
Coding style: clarify preference for filenames
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'CodingStyle.md')
-rw-r--r--CodingStyle.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/CodingStyle.md b/CodingStyle.md
index 9be434470..37e242df0 100644
--- a/CodingStyle.md
+++ b/CodingStyle.md
@@ -98,6 +98,10 @@ other editors that implement this coding style, please add them here.
where the two meet, use your best judgment and go for best consistency
(i.e., where does the variable "originate")
+* there is a strong preference for lower case file names; sometimes conventions
+ or outside requirements make camelCase filenames the better (or only) choice,
+ but absent such an outside reason all file names should be lower case
+
* switch statements with blocks are a little bit special (to avoid indenting
too far)
```