We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4992870 commit 3060a13Copy full SHA for 3060a13
.rules
@@ -14,6 +14,9 @@
14
- prefer `foo == null` and `foo != null` over `foo === undefined` and
15
`foo !== undefined`
16
- add imports at the top of the file, not inside functions
17
+- avoid the typescript `any` type - prefer strict typing, if you can't find a
18
+ good way to fix a type issue (particularly with graphql data or documents)
19
+ explain the problem instead of working around it
20
21
## changelog entries
22
CHANGELOG.md
@@ -5,6 +5,7 @@
5
### Changed
6
7
- issue start command now has searchable prompt with type-ahead filtering
8
+- improve choices for assignment on issue create
9
10
## [1.0.0] - 2025-08-20
11
0 commit comments