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 0c5cf4e commit a808a50Copy full SHA for a808a50
.github/workflows/cicd.yaml
@@ -0,0 +1,15 @@
1
+on:
2
+ - push
3
+
4
+jobs:
5
+ lint:
6
+ runs-on: ubuntu-latest
7
8
+ steps:
9
+ - uses: actions/checkout@v4
10
11
+ - name: Install uv
12
+ uses: astral-sh/setup-uv@v4
13
14
+ - name: Run pre-commit
15
+ run: uv run pre-commit
pyproject.toml
@@ -29,7 +29,7 @@ known_first_party = ["stac_auth_proxy"]
29
profile = "black"
30
31
[tool.ruff]
32
-ignore = ["E501"]
+ignore = ["E501", "D203", "D212"]
33
select = ["D", "E", "F"]
34
35
[build-system]
0 commit comments