Skip to content

Commit b6129e2

Browse files
committed
detekt 配置和部分修复
1 parent 4d84b8f commit b6129e2

File tree

8 files changed

+163
-93
lines changed

8 files changed

+163
-93
lines changed

.editorconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ indent_style = space
66
insert_final_newline = true
77
max_line_length = 120
88
tab_width = 4
9-
ij_continuation_indent_size = 8
9+
ij_continuation_indent_size = 4
1010
ij_formatter_off_tag = @formatter:off
1111
ij_formatter_on_tag = @formatter:on
1212
ij_formatter_tags_enabled = true

.github/workflows/test-branch.yml

+13-7
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
- 'gradle/**'
1414

1515
concurrency:
16-
group: ${{ github.workflow }}-${{ github.ref }}
16+
group: '${{ github.workflow }}-${{ github.ref }}'
1717
cancel-in-progress: true
1818

1919
env:
@@ -59,10 +59,7 @@ jobs:
5959

6060
detekt-check:
6161
name: Detekt check
62-
strategy:
63-
matrix:
64-
os: [ macos-latest, windows-latest, ubuntu-latest ]
65-
runs-on: ${{ matrix.os }}
62+
runs-on: ubuntu-latest
6663
steps:
6764
- uses: actions/checkout@v4
6865
- uses: actions/setup-java@v4
@@ -80,6 +77,15 @@ jobs:
8077
uses: actions/upload-artifact@v4
8178
if: ${{ always() }}
8279
with:
83-
name: test-reports-${{ runner.os }}
84-
path: '**/build/detekt/report'
80+
name: detekt-reports
81+
path: 'build/reports/detekt'
8582
retention-days: 7
83+
84+
# https://detekt.dev/docs/introduction/reporting/#integration-with-github-code-scanning
85+
# Make sure we always run this upload task,
86+
# because the previous step may fail if there are findings.
87+
- name: Upload SARIF to GitHub using the upload-sarif action
88+
uses: github/codeql-action/upload-sarif@v2
89+
if: ${{ always() }}
90+
with:
91+
sarif_file: 'build/reports/detekt/detekt.sarif'

build.gradle.kts

+20-5
Original file line numberDiff line numberDiff line change
@@ -73,27 +73,42 @@ dependencies {
7373

7474
detekt {
7575
source.setFrom(
76-
"simbot-component-telegram-api",
77-
"simbot-component-telegram-core",
78-
"simbot-component-telegram-stdlib",
79-
"simbot-component-telegram-type",
76+
subprojects
77+
// internal 处理器不管
78+
// .filter { "internal-processors" !in it.path }
79+
.map { it.projectDir.absoluteFile }
8080
)
8181

8282
config.setFrom(rootDir.resolve("config/detekt/detekt.yml"))
8383
baseline = file("$projectDir/config/detekt/baseline.xml")
8484
buildUponDefaultConfig = true
8585
parallel = true
86-
reportsDir = rootProject.layout.buildDirectory.dir("detekt/report").get().asFile
86+
reportsDir = rootProject.layout.buildDirectory.dir("reports/detekt").get().asFile
8787
if (!isCi) {
8888
autoCorrect = true
8989
}
90+
basePath = projectDir.absolutePath
9091
}
9192

9293
// https://detekt.dev/blog/2019/03/03/configure-detekt-on-root-project/
9394
tasks.withType<Detekt>().configureEach {
95+
include("**/src/*Main/kotlin/**/*.kt")
96+
include("**/src/*Main/kotlin/**/*.java")
97+
include("**/src/*Main/java/**/*.kt")
98+
include("**/src/*Main/java/**/*.java")
99+
include("**/src/main/kotlin/**/*.kt")
100+
include("**/src/main/kotlin/**/*.java")
101+
include("**/src/main/java/**/*.kt")
102+
include("**/src/main/java/**/*.java")
103+
104+
// internal 处理器不管
105+
exclude("**/internal-processors/")
94106
exclude("**/src/*/resources/")
95107
exclude("**/build/")
96108
exclude("**/*Test/kotlin/")
97109
exclude("**/*Test/java/")
110+
exclude("**/test/kotlin/")
111+
exclude("**/test/java/")
112+
exclude("**.kts")
98113
}
99114

config/detekt/detekt.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
build:
22
maxIssues: 10000 # 先不限制最大问题
33
excludeCorrectable: false
4-
weights:
5-
formatting: 10000 # 代码格式的问题,一般都有 autoCorrect, 需要尽可能不出错
6-
comments: 0
7-
complexity: 0
8-
LongParameterList: 0
9-
style: 0
4+
# weights:
5+
# formatting: 0 # 代码格式的问题
6+
# comments: 0
7+
# complexity: 0
8+
# LongParameterList: 0
9+
# style: 0
1010

1111
config:
1212
validation: true
@@ -44,12 +44,12 @@ console-reports:
4444

4545
output-reports:
4646
active: true
47-
exclude:
47+
# exclude:
4848
# - 'TxtOutputReport'
4949
# - 'XmlOutputReport'
5050
# - 'HtmlOutputReport'
5151
# - 'MdOutputReport'
52-
- 'SarifOutputReport'
52+
# - 'SarifOutputReport'
5353

5454
comments:
5555
active: true

internal-processors/component-events-processor/src/main/kotlin/telegram/internal/processors/componentevents/ComponentEventProcessorProvider.kt

+10-4
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ private class ComponentEventProcessor(private val environment: SymbolProcessorEn
8585
****************************
8686
此文件内容是 **自动生成** 的
8787
****************************
88-
""".trimIndent()
88+
""".trimIndent()
8989
)
9090
indent(" ")
9191
}.build()
@@ -124,7 +124,11 @@ private class ComponentEventProcessor(private val environment: SymbolProcessorEn
124124
* ```
125125
*/
126126
private fun generateEvents(optionalPropertiesWithNames: List<Pair<KSPropertyDeclaration, String>>): List<TypeSpec> {
127-
data class TypeBasedEventData(val property: KSPropertyDeclaration, val typeName: TypeName, val typeBuilder: TypeSpec.Builder)
127+
data class TypeBasedEventData(
128+
val property: KSPropertyDeclaration,
129+
val typeName: TypeName,
130+
val typeBuilder: TypeSpec.Builder
131+
)
128132
// val eventTypesWithTypeKey = mutableMapOf<>()
129133
val typeBasedEventTypes = optionalPropertiesWithNames.asSequence()
130134
.map { (property, _) ->
@@ -140,7 +144,8 @@ private class ComponentEventProcessor(private val environment: SymbolProcessorEn
140144
PropertySpec.builder(
141145
name = TELEGRAM_EVENT_PROPERTY_SOURCE_CONTENT_NAME,
142146
type = typeName,
143-
KModifier.OVERRIDE, KModifier.PUBLIC
147+
KModifier.OVERRIDE,
148+
KModifier.PUBLIC
144149
)
145150
.addKdoc(
146151
"Source content with type [%T]\n\n",
@@ -180,7 +185,8 @@ private class ComponentEventProcessor(private val environment: SymbolProcessorEn
180185
PropertySpec.builder(
181186
name = TELEGRAM_EVENT_PROPERTY_SOURCE_CONTENT_NAME,
182187
type = propertyTypeName,
183-
KModifier.OVERRIDE, KModifier.PUBLIC
188+
KModifier.OVERRIDE,
189+
KModifier.PUBLIC
184190
)
185191
.addKdoc(
186192
"Source content from [%M] with type [%T]\n\n",

internal-processors/include-component-message-elements-processor/src/main/kotlin/telegram/internal/processors/includemessageelements/IncludeMessageElementsProcessor.kt

+1-2
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ private class IncludeMessageElementsProcessor(val environment: SymbolProcessorEn
9797
****************************
9898
此文件内容是 **自动生成** 的
9999
****************************
100-
""".trimIndent()
100+
""".trimIndent()
101101
)
102102

103103
addFunction(function)
@@ -130,7 +130,6 @@ private class IncludeMessageElementsProcessor(val environment: SymbolProcessorEn
130130
*```
131131
*/
132132
private fun generateIncludeFunction(impls: List<KSClassDeclaration>): FunSpec {
133-
134133
// kotlinx.serialization.modules.subclass
135134
val memberName = MemberName("kotlinx.serialization.modules", "subclass")
136135

internal-processors/stdlib-processor-extensions-processor/src/main/kotlin/telegram/internal/processors/stdlibprocessor/StdlibProcessorExtensionsProcessorProvider.kt

+10-5
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ private class UpdateEventProcessor(private val environment: SymbolProcessorEnvir
102102
****************************
103103
此文件内容是 **自动生成** 的
104104
****************************
105-
""".trimIndent()
105+
""".trimIndent()
106106
)
107107
}.build()
108108

@@ -184,8 +184,11 @@ private class UpdateEventProcessor(private val environment: SymbolProcessorEnvir
184184
// subscribe<Type>(NAME, sequence, processor)
185185
.addStatement(
186186
"%M<%T>(%M, %L, %L)",
187-
BotSubscribeExtensionMember, eventType,
188-
nameMember, SEQUENCE_PARAM_NAME, PROCESSOR_PARAM_NAME
187+
BotSubscribeExtensionMember,
188+
eventType,
189+
nameMember,
190+
SEQUENCE_PARAM_NAME,
191+
PROCESSOR_PARAM_NAME
189192
)
190193
.build()
191194
)
@@ -203,8 +206,10 @@ private class UpdateEventProcessor(private val environment: SymbolProcessorEnvir
203206
204207
@see %M
205208
@see %M
206-
""".trimIndent(),
207-
eventType, nameMember, propertyName,
209+
""".trimIndent(),
210+
eventType,
211+
nameMember,
212+
propertyName,
208213
BotSubscribeExtensionMember,
209214
MemberName(UpdateClassName, propertyName)
210215
)

0 commit comments

Comments
 (0)