Style guides for Google-originated open-source projects
 
 
 
 
 
 
Go to file
Geoff Romer 8487c083e1
Merge pull request #804 from zetafunction/gh-pages
Update C++ style guide.
2024-02-27 09:30:08 -08:00
.github add issue template 2021-04-12 08:53:25 -04:00
assets/css Hide “This site is open source. Improve this page.” footer 2020-02-28 11:03:30 -05:00
cpplint Merge pull request #580 from FaresSalem/gh-pages 2022-08-06 17:37:10 -07:00
docguide Merge pull request #478 from amanvell/patch-1 2019-10-08 10:19:02 +01:00
go go: Export the latest version of internal guide. 2024-01-30 17:19:28 +01:00
include Remove prettyprint from HTML/CSS Style Guide 2022-01-12 13:47:57 +00:00
CODEOWNERS Add Go CODEOWNERS. 2022-11-17 20:10:43 +00:00
CODE_OF_CONDUCT.md use the 2.0 version of the Contributor Covenant, with modification 2021-04-19 15:28:07 -04:00
LICENSE Add an Apache 2.0 license file. 2020-01-02 15:34:31 -08:00
README.md Merge branch 'gh-pages' into patch-1 2022-11-24 16:08:55 -08:00
Rguide.md Replace external R style guide 2019-07-17 21:28:05 -07:00
Rguide.xml Redirect to the HTML version of the R Style Guide 2019-08-07 08:53:53 +01:00
angularjs-google-style.html Revert "Project import generated by Copybara." 2018-01-30 12:36:50 -05:00
cppguide.html Update C++ style guide. 2024-02-12 11:42:31 -08:00
cppguide.xml Revert "Project import generated by Copybara." 2018-01-30 12:36:50 -05:00
csharp-style.md Remove more markdown that GitHub cannot handle 2020-06-04 15:05:36 +01:00
eclipse-cpp-google-style.xml Revert "Project import generated by Copybara." 2018-01-30 12:36:50 -05:00
eclipse-java-google-style.xml Revert "Project import generated by Copybara." 2018-01-30 12:36:50 -05:00
google-c-style.el Fix typos 2022-02-10 17:44:21 +02:00
google-r-style.html Redirect google-r-style.html to RGuide.html 2019-08-07 08:58:29 +01:00
google_python_style.vim Project import generated by Copybara. 2019-12-30 13:53:39 -08:00
htmlcssguide.html Update the HTML Document Type guidance 2023-04-26 12:22:36 +01:00
htmlcssguide.xml Revert "Project import generated by Copybara." 2018-01-30 12:36:50 -05:00
intellij-java-google-style.xml Revert "Project import generated by Copybara." 2018-01-30 12:36:50 -05:00
javaguide.css Improve javaguide.css compliance with style guide 2023-10-23 17:26:54 +01:00
javaguide.html Move a </p> around 2022-02-02 20:00:05 -08:00
javaguidelink.png Revert "Project import generated by Copybara." 2018-01-30 12:36:50 -05:00
javascriptguide.xml Fix typos 2022-02-10 17:44:21 +02:00
jsguide.html Fix typos 2022-02-10 17:44:21 +02:00
jsoncstyleguide.html Revert "Project import generated by Copybara." 2018-01-30 12:36:50 -05:00
jsoncstyleguide.xml Revert "Project import generated by Copybara." 2018-01-30 12:36:50 -05:00
jsoncstyleguide_example_01.png Revert "Project import generated by Copybara." 2018-01-30 12:36:50 -05:00
jsoncstyleguide_example_02.png Revert "Project import generated by Copybara." 2018-01-30 12:36:50 -05:00
lispguide.xml Fix PRINT-UNPRINTABLE-OBJECT 2022-10-27 09:16:17 +02:00
objcguide.md [objc] Update the Objective-C style guide 📜 2018-08-17 18:47:57 -07:00
objcguide.xml Revert "Project import generated by Copybara." 2018-01-30 12:36:50 -05:00
pyguide.md Project import generated by Copybara. 2024-02-12 11:48:22 -08:00
pylintrc Project import generated by Copybara. 2023-09-25 17:52:06 -04:00
shell.xml Add an HTML>HEADER>META tag to redirect from the old to the new shell guide 2020-02-17 12:30:45 -08:00
shell.xsl Add a canonical link to update the URL for the Shell guide 2020-04-29 22:30:48 -07:00
shellguide.md Project import generated by Copybara. 2020-05-18 13:58:13 -07:00
styleguide.css Improve styleguide.css compliance with style guide 2023-10-23 17:26:44 +01:00
styleguide.xsl Fix typos 2022-02-10 17:44:21 +02:00
tsguide.html Update ts styleguide with latest google version 2023-10-20 15:57:59 -04:00
vimscriptfull.xml Fix typos 2022-02-10 17:44:21 +02:00
vimscriptguide.xml Fix typos 2022-02-10 17:44:21 +02:00
xmlstyle.html Revert "Project import generated by Copybara." 2018-01-30 12:36:50 -05:00

README.md

Google Style Guides

Every major open-source project has its own style guide: a set of conventions (sometimes arbitrary) about how to write code for that project. It is much easier to understand a large codebase when all the code in it is in a consistent style.

“Style” covers a lot of ground, from “use camelCase for variable names” to “never use global variables” to “never use exceptions.” This project (google/styleguide) links to the style guidelines we use for Google code. If you are modifying a project that originated at Google, you may be pointed to this page to see the style guides that apply to that project.

This project also contains cpplint, a tool to assist with style guide compliance, and google-c-style.el, an Emacs settings file for Google style.

If your project requires that you create a new XML document format, the XML Document Format Style Guide may be helpful. In addition to actual style rules, it also contains advice on designing your own vs. adapting an existing format, on XML instance document formatting, and on elements vs. attributes.

The style guides in this project are licensed under the CC-By 3.0 License, which encourages you to share these documents. See https://creativecommons.org/licenses/by/3.0/ for more details.

The following Google style guide lives outside of this project: Effective Dart.

Contributing

With few exceptions, these style guides are copies of Google's internal style guides to assist developers working on Google owned and originated open source projects. Changes to the style guides are made to the internal style guides first and eventually copied into the versions found here. External contributions are not accepted. Pull requests are regularly closed without comment. Issues that raise questions, justify changes on technical merits, or point out obvious mistakes may get some engagement and could in theory lead to changes, but we are primarily optimizing for Google's internal needs.

Creative Commons License