[feat/refactor] ui 화면 추가 및 리팩토링 #27
16 new problems found by Qodana Community for JVM
Qodana Community for JVM
16 new problems were found
| Inspection name | Severity | Problems |
|---|---|---|
Incorrect string capitalization |
🔶 Warning | 4 |
Unused symbol |
🔶 Warning | 2 |
Redundant nullable return type |
🔶 Warning | 1 |
Redundant semicolon |
🔶 Warning | 1 |
Verbose nullability and emptiness check |
◽️ Notice | 3 |
Unnecessary type argument |
◽️ Notice | 2 |
If-Null return/break/... foldable to '?:' |
◽️ Notice | 1 |
Replace empty class body |
◽️ Notice | 1 |
Unnecessary local variable |
◽️ Notice | 1 |
💡 Qodana analysis was run in the pull request mode: only the changed files were checked
View the detailed Qodana report
To be able to view the detailed Qodana report, you can either:
- Register at Qodana Cloud and configure the action
- Use GitHub Code Scanning with Qodana
- Host Qodana report at GitHub Pages
- Inspect and use
qodana.sarif.json(see the Qodana SARIF format for details)
To get *.log files or any other Qodana artifacts, run the action with upload-result option set to true,
so that the action will upload the files as the job artifacts:
- name: 'Qodana Scan'
uses: JetBrains/qodana-action@v2025.1.1
with:
upload-result: trueContact Qodana team
Contact us at qodana-support@jetbrains.com
- Or via our issue tracker: https://jb.gg/qodana-issue
- Or share your feedback: https://jb.gg/qodana-discussions
Details
This result was published with Qodana GitHub Action
Annotations
Check warning on line 384 in src/main/kotlin/com/github/yeoli/devlog/ui/DevLogPanel.kt
github-actions / Qodana Community for JVM
Incorrect string capitalization
String '삭제 후엔 복구가 불가능 합니다. 이 메모를 지우시겠습니까?' is not properly capitalized. It should have sentence capitalization
Check warning on line 934 in src/main/kotlin/com/github/yeoli/devlog/ui/DevLogPanel.kt
github-actions / Qodana Community for JVM
Incorrect string capitalization
String 'Delete Selected Logs' is not properly capitalized. It should have sentence capitalization
Check warning on line 395 in src/main/kotlin/com/github/yeoli/devlog/ui/DevLogPanel.kt
github-actions / Qodana Community for JVM
Incorrect string capitalization
String 'Toggle Memo List / Notes' is not properly capitalized. It should have sentence capitalization
Check warning on line 83 in src/main/kotlin/com/github/yeoli/devlog/ui/MemoExportAction.kt
github-actions / Qodana Community for JVM
Incorrect string capitalization
String 'DevLog Export' is not properly capitalized. It should have sentence capitalization
Check notice on line 290 in src/main/kotlin/com/github/yeoli/devlog/ui/DevLogPanel.kt
github-actions / Qodana Community for JVM
If-Null return/break/... foldable to '?:'
If-Null return/break/... foldable to '?:'
github-actions / Qodana Community for JVM
Redundant nullable return type
'getState' always returns non-null type
github-actions / Qodana Community for JVM
Redundant semicolon
Redundant semicolon
github-actions / Qodana Community for JVM
Replace empty class body
Redundant empty class body
Check notice on line 58 in src/main/kotlin/com/github/yeoli/devlog/ui/DevLogPanel.kt
github-actions / Qodana Community for JVM
Unnecessary type argument
Remove explicit type arguments
Check notice on line 59 in src/main/kotlin/com/github/yeoli/devlog/ui/DevLogPanel.kt
github-actions / Qodana Community for JVM
Unnecessary type argument
Remove explicit type arguments
Check notice on line 265 in src/main/kotlin/com/github/yeoli/devlog/ui/MemoListView.kt
github-actions / Qodana Community for JVM
Unnecessary local variable
Variable is same as 'meta' and can be inlined
Check warning on line 179 in src/main/kotlin/com/github/yeoli/devlog/ui/MemoListView.kt
github-actions / Qodana Community for JVM
Unused symbol
Function "navigateToRecord" is never used
Check warning on line 24 in src/main/kotlin/com/github/yeoli/devlog/ui/MemoListView.kt
github-actions / Qodana Community for JVM
Unused symbol
Property "DATE_LABEL_BORDER" is never used
Check notice on line 443 in src/main/kotlin/com/github/yeoli/devlog/ui/DevLogPanel.kt
github-actions / Qodana Community for JVM
Verbose nullability and emptiness check
Replace subsequent checks with 'isNullOrBlank()' call
Check notice on line 240 in src/main/kotlin/com/github/yeoli/devlog/ui/MemoListView.kt
github-actions / Qodana Community for JVM
Verbose nullability and emptiness check
Replace subsequent checks with '!isNullOrBlank()' call
Check notice on line 35 in src/main/kotlin/com/github/yeoli/devlog/ui/MemoExportAction.kt
github-actions / Qodana Community for JVM
Verbose nullability and emptiness check
Replace subsequent checks with 'isNullOrEmpty()' call