We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a8618f commit 43564a6Copy full SHA for 43564a6
pyproject.toml
@@ -49,12 +49,32 @@ test = [
49
"pytest-cov",
50
"pytest-env",
51
]
52
+
53
[tool.ruff]
54
line-length = 79
55
56
[tool.ruff.format]
57
quote-style = "single"
58
59
+[tool.ruff.lint]
60
+select = [
61
+ # pycodestyle
62
+ "E",
63
+ # Pyflakes
64
+ "F",
65
+ # pyupgrade
66
+ "UP",
67
+ # flake8-bugbear
68
+ "B",
69
+ # flake8-simplify
70
+ "SIM",
71
+ # isort
72
+ "I",
73
+]
74
75
+[tool.ruff.lint.isort]
76
+known-local-folder = ["gcm"]
77
78
[tool.mypy]
79
files = "src/**/*.py"
80
strict = true
tests/commands/test_base.py
@@ -2,6 +2,7 @@
2
from unittest.mock import call, patch
3
4
import pytest
5
6
from gcm.commands.base import PACKAGE_NAME, Command, ensure_desired_env_line
7
8
DUMMY_CCACHE = """# foo
0 commit comments