styleguide
styleguide copied to clipboard
Style guides for Google-originated open-source projects
Summary: C++20 deprecates [=] capturing 'this' (http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2018/p0806r2.html) but the recommended alternative [=,this] is not standards-legal prior to C++20 (though it is widely accepted *with warning*). For portability (and readability), style...
JASON ALAN JAMES These style guides are copies of Google's internal style guides to assist developers working on Google owned and originated open source projects. Changes should be made to...
These style guides are copies of Google's internal style guides to assist developers working on Google owned and originated open source projects. Changes should be made to the internal style...
Unused list item after **Constants** under [Identifiers](https://google.github.io/styleguide/tsguide.html#identifiers) :heart_eyes:
It looks like there are some IDE-specific configuration files here to make it easier to adopt these coding styles. However, I don't see anything for [`.editorconfig`](https://editorconfig.org/). Although it is quite...
The [guide here](https://google.github.io/styleguide/javaguide.html#s3.3.3-import-ordering-and-spacing) shows that: > If there are both static and non-static imports, a single blank line separates the two blocks. There are no other blank lines between import...
Google Java Style Guide says as folows in "[3.3 Import statements](http://google.github.io/styleguide/javaguide.html#s3.3.3-import-ordering-and-spacing)": ``` Imports are ordered as follows: 1. All static imports in a single block. 2. All non-static imports in...