Skip to content

Commit

Permalink
Suppress warnings, fix Renovate
Browse files Browse the repository at this point in the history
  • Loading branch information
WarningImHack3r committed Jan 9, 2024
1 parent ec3d4cf commit 41bd009
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
10 changes: 10 additions & 0 deletions .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,16 @@
"matchManagers": ["github-actions", "gradle"],
"groupName": "{{manager}}",
"addLabels": ["{{manager}}"]
},
{
"matchManagers": ["gradle"],
"matchPackagePatterns": [".*plugin.serialization.*"],
"enable": false
},
{
"matchManagers": ["gradle"],
"matchPackageNames": ["org.jetbrains.qodana:org.jetbrains.qodana.gradle.plugin"],
"allowedVersions": "!/^2023/"
}
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import kotlinx.serialization.Serializable
/**
* A shadcn-svelte locally installed components.json file.
*/
@Suppress("PROVIDED_RUNTIME_TOO_LOW", "kotlin:S117")
@Suppress("PROVIDED_RUNTIME_TOO_LOW", "kotlin:S117", "unused", "PropertyName")
@Serializable
sealed class Config {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ class VueConfig(
/**
* The framework used.
*/
@Suppress("unused")
@Serializable
enum class Framework {
@SerialName("vite")
Expand Down

0 comments on commit 41bd009

Please sign in to comment.