We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c74739 commit 9868e4fCopy full SHA for 9868e4f
.gitignore
@@ -1 +1,2 @@
1
bazel-*
2
+MODULE.bazel.lock
MODULE.bazel
@@ -0,0 +1,19 @@
+module(name = "lowrisc_misc_linters")
+
3
+bazel_dep(name = "rules_python", version = "0.32.2")
4
+bazel_dep(
5
+ name = "aspect_rules_lint",
6
+ version = "1.0.0-rc3",
7
+ dev_dependency = True,
8
+)
9
10
+python = use_extension("@rules_python//python/extensions:python.bzl", "python")
11
+python.toolchain(python_version = "3.9")
12
13
+pip = use_extension("@rules_python//python/extensions:pip.bzl", "pip")
14
+pip.parse(
15
+ hub_name = "pip",
16
+ python_version = "3.9",
17
+ requirements_lock = "//:requirements.txt",
18
19
+use_repo(pip, lowrisc_misc_linters_pip="pip")
WORKSPACE.bzlmod
@@ -0,0 +1,2 @@
+load("@aspect_rules_lint//lint:ruff.bzl", "fetch_ruff")
+fetch_ruff()
0 commit comments