Skip to content

Commit 256f10d

Browse files
committed
Updates skills
1 parent 45bb95b commit 256f10d

2 files changed

Lines changed: 15 additions & 1 deletion

File tree

.claude/skills/kotlin/SKILL.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,12 @@ private val CSV_HEADER = CSVFormat.DEFAULT.builder()
120120
).get()
121121
```
122122

123-
## 8. Checklist
123+
## 8. For all uses of Lombok in Kotlin classes that still use its builder pattern, please convert them to data classes
124+
125+
Due to Java conversions to Kotlin, some of them, due to their automatic nature, didn't consider the existence of data classes.
126+
If Kotlin classes still use lombok for the builder pattern please convert them to `data class`.
127+
128+
## 9. Checklist
124129

125130
[ ] The code does not use the `!!` operator.
126131
[ ] The code does not use the safe call operator (`?.`) when the value is guaranteed to be non-null.

.claude/skills/readme/SKILL.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,3 +89,12 @@ These badges should only be part of root `Readme.md` files. They should also be
8989

9090
The pipeline GitHub action badges usually have the name of the project. They usually have `actions/workflows` in the links.
9191
These should only be part of root `Readme.md` files. They should also be removed from other .md files if found.
92+
93+
## 5. Please remove emojis from badges
94+
95+
There may be other badges with emojis in their presentation text.
96+
Most of these bages are the Generic one:
97+
98+
[![Generic badge]()]()
99+
100+
Look for these badges and simply remove the emoji from the presentation text, if any is found.

0 commit comments

Comments
 (0)