From 296409d9d08a159e6416aa6854f461522e00898d Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Mon, 12 Jan 2015 18:06:36 -0800 Subject: [PATCH] Update style guide Signed-off-by: Max Brunsfeld --- CONTRIBUTING.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ae9ba4184..f35006e2f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -99,6 +99,10 @@ For more information on how to work with Atom's official packages, see * Avoid spaces inside the curly-braces of hash literals: * `{a: 1, b: 2}` instead of `{ a: 1, b: 2 }` * Include a single line of whitespace between methods. +* Capitalize initialisms and acronyms in names, except for the first word, which + should be lower-case: + * `getURI` instead of `getUri` + * `uriToOpen` instead of `URIToOpen` ## Documentation Styleguide