Skip to content

Commit

Permalink
chore(deps): update dependency aspect_rules_lint to v1
Browse files Browse the repository at this point in the history
  • Loading branch information
zemnmez-renovate-bot authored and Zemnmez committed Jan 19, 2025
1 parent e2490fe commit 0338dc6
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ rules_ts_ext.deps(
)
use_repo(rules_ts_ext, "npm_typescript")

bazel_dep(name = "aspect_rules_lint", version = "0.21.0")
bazel_dep(name = "aspect_rules_lint", version = "1.0.8")
bazel_dep(name = "bazel_features", version = "1.23.0")
bazel_dep(name = "rules_go", version = "0.52.0", repo_name = "io_bazel_rules_go")
bazel_dep(name = "gazelle", version = "0.41.0", repo_name = "bazel_gazelle")
Expand Down
7 changes: 3 additions & 4 deletions MODULE.bazel.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,6 @@ rust_analyzer_dependencies()
# cargo for some reason.
load("@aspect_rules_lint//lint:ruff.bzl", "fetch_ruff")

fetch_ruff()
fetch_ruff(
"v0.4.10",
)
2 changes: 1 addition & 1 deletion project/cultist/state/deserialize.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export function deck(s: Save.Deck): State.Deck {
const { eliminatedCards, ...otherCards } = s;
const cardList = [];

for (const [cardInd, card] of Object.entries(otherCards ?? {})) {
for (const [cardInd, card] of Object.entries(otherCards)) {
if (card instanceof Array)
throw new Error(
`'${cardInd}' should be single card, not multiple ${card}`
Expand Down
2 changes: 1 addition & 1 deletion ts/pulumi/setMocks.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as pulumi from '@pulumi/pulumi';

pulumi.runtime.setMocks({
void pulumi.runtime.setMocks({
// Mock requests to provision cloud resources and return a canned response.
newResource: (
args: pulumi.runtime.MockResourceArgs
Expand Down

0 comments on commit 0338dc6

Please sign in to comment.