Skip to content

Commit 090b807

Browse files
Update all non-major dependencies (#4905)
* Update all non-major dependencies * Prettier Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --------- Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
1 parent 06a1e1a commit 090b807

File tree

3 files changed

+233
-224
lines changed

3 files changed

+233
-224
lines changed

code_style.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,6 @@ Unless otherwise specified, the following applies to all code:
119119
2. "Conflicted" typically refers to a getter which wants the same name as the underlying variable.
120120
20. Prefer readonly members over getters backed by a variable, unless an internal setter is required.
121121
21. Prefer Interfaces for object definitions, and types for parameter-value-only declarations.
122-
123122
1. Note that an explicit type is optional if not expected to be used outside of the function call,
124123
unlike in this example:
125124

@@ -153,7 +152,6 @@ Unless otherwise specified, the following applies to all code:
153152
28. Export only what can be reused.
154153
29. Prefer a type like `Optional<X>` (`type Optional<T> = T | null | undefined`) instead
155154
of truly optional parameters.
156-
157155
1. A notable exception is when the likelihood of a bug is minimal, such as when a function
158156
takes an argument that is more often not required than required. An example where the
159157
`?` operator is inappropriate is when taking a room ID: typically the caller should
@@ -272,7 +270,6 @@ Unless otherwise specified, the following applies to all code:
272270
interfaces have a habit of becoming more complex over time.
273271

274272
3. Inside a function, there is no need to comment every line, but consider:
275-
276273
- before a particular multiline section of code within the function, give an overview of what it does,
277274
to make it easier for a reader to follow the flow through the function as a whole.
278275
- if it is anything less than obvious, explain _why_ we are doing a particular operation, with particular emphasis

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@
115115
"lint-staged": "^16.0.0",
116116
"matrix-mock-request": "^2.5.0",
117117
"node-fetch": "^2.7.0",
118-
"prettier": "3.5.3",
118+
"prettier": "3.6.2",
119119
"rimraf": "^6.0.0",
120120
"ts-node": "^10.9.2",
121121
"typedoc": "^0.28.1",

0 commit comments

Comments
 (0)