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.
2 parents c152ca9 + 46ef92e commit a6f9490Copy full SHA for a6f9490
.github/workflows/ci.yml
@@ -2,9 +2,9 @@ name: CI
2
3
on:
4
push:
5
- branches: [ main ]
+ branches: [ main, second-branch ]
6
pull_request:
7
8
9
jobs:
10
lint:
@@ -32,8 +32,8 @@ jobs:
32
33
- name: Auto-fix code with Ruff
34
run: |
35
- ruff format . --fix --line-length 88 --exclude migrations,venv || true
+ ruff check . --fix --line-length 88 || true
36
37
- name: Run Ruff linter
38
39
- ruff check . --select ALL --ignore F401,W391 --line-length 88
+ ruff check . --line-length 88
.ruff.toml
@@ -0,0 +1,10 @@
1
+line-length = 88
+select = ["E", "F"]
+ignore = ["F401", "W391", "E501"]
+exclude = [
+ "venv",
+ "migrations",
+ ".git",
+ "__pycache__",
+ "node_modules"
+]
0 commit comments