Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ruff linter #6782

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .cookiecutter/cookiecutter.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
"__frontend_typechecking": "yes",
"postgres": "yes",
"docker": "yes",
"linter": "ruff",
"__postgres_port": "5433",
"__postgres_version": "15.6-alpine",
"__docker_namespace": "hypothesis",
Expand Down
1 change: 1 addition & 0 deletions .cookiecutter/includes/requirements/dev.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
h_testkit
1 change: 1 addition & 0 deletions .cookiecutter/includes/requirements/prod.in
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ h-assets
sentry-sdk
h-pyramid-sentry
h-vialib
hubspot-api-client
importlib_resources
mailchimp-transactional
marshmallow
Expand Down
3 changes: 3 additions & 0 deletions .cookiecutter/includes/tox/setenv
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ dev: OAUTH2_STATE_SECRET = {env:OAUTH2_STATE_SECRET:notasecret}
dev: RPC_ALLOWED_ORIGINS = {env:RPC_ALLOWED_ORIGINS:http://localhost:5000}
dev: VIA_URL = {env:VIA_URL:http://localhost:9083}
dev: SESSION_COOKIE_SECRET = {env:SESSION_COOKIE_SECRET:notasecret}
dev: DISABLE_KEY_ROTATION=1
dev: HUBSPOT_API_KEY
dev: HUBSPOT_ACCOUNT_ID
VIA_SECRET = not_a_secret
FDW_USERS = {env:FDW_USERS:report-fdw}
HTTP_HOST = {env:HTTP_HOST:localhost:8001}
Expand Down
Loading