├── .gitignore ├── Makefile ├── README.rst ├── conf.py ├── contents.rst ├── google-cpp-styleguide ├── classes.rst ├── comments.rst ├── contents.rst ├── end.rst ├── exceptions.rst ├── formatting.rst ├── headers.rst ├── index.rst ├── magic.rst ├── naming.rst ├── others.rst └── scoping.rst ├── google-html-css-styleguide ├── background.rst ├── css_formatting_rules.rst ├── css_meta_rules.rst ├── css_style_rules.rst ├── general_formatting_rules.rst ├── general_meta_rules.rst ├── general_style_rules.rst ├── html_formatting_rules.rst ├── html_style_rules.rst └── parting_words.rst ├── google-javascript-styleguide ├── background.rst ├── javascript_language_rules.rst └── javascript_style_rules.rst ├── google-objc-styleguide ├── comments.rst ├── contents.rst ├── features.rst ├── index.rst ├── naming.rst ├── patterns.rst └── spacing.rst ├── google-python-styleguide ├── background.rst ├── contents.rst ├── index.rst ├── parting_words.rst ├── python_language_rules.rst └── python_style_rules.rst ├── index.rst └── make.bat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welkineins/tw-google-styleguide/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welkineins/tw-google-styleguide/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welkineins/tw-google-styleguide/HEAD/README.rst -------------------------------------------------------------------------------- /conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welkineins/tw-google-styleguide/HEAD/conf.py -------------------------------------------------------------------------------- /contents.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welkineins/tw-google-styleguide/HEAD/contents.rst -------------------------------------------------------------------------------- /google-cpp-styleguide/classes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welkineins/tw-google-styleguide/HEAD/google-cpp-styleguide/classes.rst -------------------------------------------------------------------------------- /google-cpp-styleguide/comments.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welkineins/tw-google-styleguide/HEAD/google-cpp-styleguide/comments.rst -------------------------------------------------------------------------------- /google-cpp-styleguide/contents.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welkineins/tw-google-styleguide/HEAD/google-cpp-styleguide/contents.rst -------------------------------------------------------------------------------- /google-cpp-styleguide/end.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welkineins/tw-google-styleguide/HEAD/google-cpp-styleguide/end.rst -------------------------------------------------------------------------------- /google-cpp-styleguide/exceptions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welkineins/tw-google-styleguide/HEAD/google-cpp-styleguide/exceptions.rst -------------------------------------------------------------------------------- /google-cpp-styleguide/formatting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welkineins/tw-google-styleguide/HEAD/google-cpp-styleguide/formatting.rst -------------------------------------------------------------------------------- /google-cpp-styleguide/headers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welkineins/tw-google-styleguide/HEAD/google-cpp-styleguide/headers.rst -------------------------------------------------------------------------------- /google-cpp-styleguide/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welkineins/tw-google-styleguide/HEAD/google-cpp-styleguide/index.rst -------------------------------------------------------------------------------- /google-cpp-styleguide/magic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welkineins/tw-google-styleguide/HEAD/google-cpp-styleguide/magic.rst -------------------------------------------------------------------------------- /google-cpp-styleguide/naming.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welkineins/tw-google-styleguide/HEAD/google-cpp-styleguide/naming.rst -------------------------------------------------------------------------------- /google-cpp-styleguide/others.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welkineins/tw-google-styleguide/HEAD/google-cpp-styleguide/others.rst -------------------------------------------------------------------------------- /google-cpp-styleguide/scoping.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welkineins/tw-google-styleguide/HEAD/google-cpp-styleguide/scoping.rst -------------------------------------------------------------------------------- /google-html-css-styleguide/background.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welkineins/tw-google-styleguide/HEAD/google-html-css-styleguide/background.rst -------------------------------------------------------------------------------- /google-html-css-styleguide/css_formatting_rules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welkineins/tw-google-styleguide/HEAD/google-html-css-styleguide/css_formatting_rules.rst -------------------------------------------------------------------------------- /google-html-css-styleguide/css_meta_rules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welkineins/tw-google-styleguide/HEAD/google-html-css-styleguide/css_meta_rules.rst -------------------------------------------------------------------------------- /google-html-css-styleguide/css_style_rules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welkineins/tw-google-styleguide/HEAD/google-html-css-styleguide/css_style_rules.rst -------------------------------------------------------------------------------- /google-html-css-styleguide/general_formatting_rules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welkineins/tw-google-styleguide/HEAD/google-html-css-styleguide/general_formatting_rules.rst -------------------------------------------------------------------------------- /google-html-css-styleguide/general_meta_rules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welkineins/tw-google-styleguide/HEAD/google-html-css-styleguide/general_meta_rules.rst -------------------------------------------------------------------------------- /google-html-css-styleguide/general_style_rules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welkineins/tw-google-styleguide/HEAD/google-html-css-styleguide/general_style_rules.rst -------------------------------------------------------------------------------- /google-html-css-styleguide/html_formatting_rules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welkineins/tw-google-styleguide/HEAD/google-html-css-styleguide/html_formatting_rules.rst -------------------------------------------------------------------------------- /google-html-css-styleguide/html_style_rules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welkineins/tw-google-styleguide/HEAD/google-html-css-styleguide/html_style_rules.rst -------------------------------------------------------------------------------- /google-html-css-styleguide/parting_words.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welkineins/tw-google-styleguide/HEAD/google-html-css-styleguide/parting_words.rst -------------------------------------------------------------------------------- /google-javascript-styleguide/background.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welkineins/tw-google-styleguide/HEAD/google-javascript-styleguide/background.rst -------------------------------------------------------------------------------- /google-javascript-styleguide/javascript_language_rules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welkineins/tw-google-styleguide/HEAD/google-javascript-styleguide/javascript_language_rules.rst -------------------------------------------------------------------------------- /google-javascript-styleguide/javascript_style_rules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welkineins/tw-google-styleguide/HEAD/google-javascript-styleguide/javascript_style_rules.rst -------------------------------------------------------------------------------- /google-objc-styleguide/comments.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welkineins/tw-google-styleguide/HEAD/google-objc-styleguide/comments.rst -------------------------------------------------------------------------------- /google-objc-styleguide/contents.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welkineins/tw-google-styleguide/HEAD/google-objc-styleguide/contents.rst -------------------------------------------------------------------------------- /google-objc-styleguide/features.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welkineins/tw-google-styleguide/HEAD/google-objc-styleguide/features.rst -------------------------------------------------------------------------------- /google-objc-styleguide/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welkineins/tw-google-styleguide/HEAD/google-objc-styleguide/index.rst -------------------------------------------------------------------------------- /google-objc-styleguide/naming.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welkineins/tw-google-styleguide/HEAD/google-objc-styleguide/naming.rst -------------------------------------------------------------------------------- /google-objc-styleguide/patterns.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welkineins/tw-google-styleguide/HEAD/google-objc-styleguide/patterns.rst -------------------------------------------------------------------------------- /google-objc-styleguide/spacing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welkineins/tw-google-styleguide/HEAD/google-objc-styleguide/spacing.rst -------------------------------------------------------------------------------- /google-python-styleguide/background.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welkineins/tw-google-styleguide/HEAD/google-python-styleguide/background.rst -------------------------------------------------------------------------------- /google-python-styleguide/contents.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welkineins/tw-google-styleguide/HEAD/google-python-styleguide/contents.rst -------------------------------------------------------------------------------- /google-python-styleguide/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welkineins/tw-google-styleguide/HEAD/google-python-styleguide/index.rst -------------------------------------------------------------------------------- /google-python-styleguide/parting_words.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welkineins/tw-google-styleguide/HEAD/google-python-styleguide/parting_words.rst -------------------------------------------------------------------------------- /google-python-styleguide/python_language_rules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welkineins/tw-google-styleguide/HEAD/google-python-styleguide/python_language_rules.rst -------------------------------------------------------------------------------- /google-python-styleguide/python_style_rules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welkineins/tw-google-styleguide/HEAD/google-python-styleguide/python_style_rules.rst -------------------------------------------------------------------------------- /index.rst: -------------------------------------------------------------------------------- 1 | README.rst -------------------------------------------------------------------------------- /make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welkineins/tw-google-styleguide/HEAD/make.bat --------------------------------------------------------------------------------