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 7fed307 commit 274cb76Copy full SHA for 274cb76
.github/workflows/docstrings.yml
@@ -0,0 +1,17 @@
1
+name: Lint
2
+on:
3
+ pull_request:
4
+ push:
5
+ branches:
6
+ - main
7
+concurrency:
8
+ group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
9
+ cancel-in-progress: true
10
+
11
+jobs:
12
+ docstrings:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - uses: actions/checkout@v5
16
+ - name: Check docstrings
17
+ run: ruff check --select="D" src/
pyproject.toml
@@ -116,6 +116,9 @@ dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
116
[tool.coverage.run]
117
include = ["src/bloqade/*"]
118
119
+[tool.ruff.lint.pydocstyle]
120
+convention = "google"
121
122
[tool.pytest.ini_options]
123
testpaths = "test/"
124
filterwarnings = [
0 commit comments