Skip to content

Commit d2b5c9a

Browse files
authored
Merge pull request #67 from nathenharvey/nathenharvey/newline-eof
style(templates): add trailing newlines to styleguide templates
2 parents 716c758 + 08e9b95 commit d2b5c9a

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

templates/code_styleguides/go.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@ This document summarizes key rules and best practices from the official "Effecti
4545
- **Explicit Error Handling:** Do not discard errors with the blank identifier (`_`). Check for errors explicitly.
4646
- **`panic`:** Reserved for truly exceptional, unrecoverable situations. Generally, libraries should not panic.
4747

48-
*Source: [Effective Go](https://go.dev/doc/effective_go)*
48+
*Source: [Effective Go](https://go.dev/doc/effective_go)*

templates/code_styleguides/html-css.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,4 @@ This document summarizes key rules and best practices from the Google HTML/CSS S
4646

4747
**BE CONSISTENT.** When editing code, match the existing style.
4848

49-
*Source: [Google HTML/CSS Style Guide](https://google.github.io/styleguide/htmlcssguide.html)*
49+
*Source: [Google HTML/CSS Style Guide](https://google.github.io/styleguide/htmlcssguide.html)*

templates/code_styleguides/javascript.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,4 @@ This document summarizes key rules and best practices from the Google JavaScript
4848
- Use `@param`, `@return`, `@override`, `@deprecated`.
4949
- Type annotations are enclosed in braces (e.g., `/** @param {string} userName */`).
5050

51-
*Source: [Google JavaScript Style Guide](https://google.github.io/styleguide/jsguide.html)*
51+
*Source: [Google JavaScript Style Guide](https://google.github.io/styleguide/jsguide.html)*

templates/code_styleguides/python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ This document summarizes key rules and best practices from the Google Python Sty
3434

3535
**BE CONSISTENT.** When editing code, match the existing style.
3636

37-
*Source: [Google Python Style Guide](https://google.github.io/styleguide/pyguide.html)*
37+
*Source: [Google Python Style Guide](https://google.github.io/styleguide/pyguide.html)*

templates/code_styleguides/typescript.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@ This document summarizes key rules and best practices from the Google TypeScript
4040
- **Redundancy:** **Do not declare types in `@param` or `@return` blocks** (e.g., `/** @param {string} user */`). This is redundant in TypeScript.
4141
- **Add Information:** Comments must add information, not just restate the code.
4242

43-
*Source: [Google TypeScript Style Guide](https://google.github.io/styleguide/tsguide.html)*
43+
*Source: [Google TypeScript Style Guide](https://google.github.io/styleguide/tsguide.html)*

0 commit comments

Comments
 (0)