-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
25 changed files
with
291 additions
and
371 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
exclude: ".yarn/|yarn.lock|package.json|conf/strings.js" | ||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.6.0 | ||
rev: v5.0.0 | ||
hooks: | ||
- id: check-added-large-files | ||
- id: check-builtin-literals | ||
|
@@ -28,36 +28,41 @@ repos: | |
name: prettier | ||
entry: npx [email protected] --no-semi --write | ||
language: system | ||
types_or: [css, scss] | ||
types_or: [scss] | ||
require_serial: true | ||
- repo: https://github.com/adamchainz/django-upgrade | ||
rev: 1.21.0 | ||
rev: 1.22.1 | ||
hooks: | ||
- id: django-upgrade | ||
args: [--target-version, "5.0"] | ||
args: [--target-version, "5.1"] | ||
- repo: https://github.com/adamchainz/djade-pre-commit | ||
rev: "1.3.2" | ||
hooks: | ||
- id: djade | ||
args: [--target-version, "5.1"] | ||
- repo: https://github.com/astral-sh/ruff-pre-commit | ||
rev: "v0.6.4" | ||
rev: "v0.7.1" | ||
hooks: | ||
- id: ruff | ||
args: [--unsafe-fixes] | ||
- id: ruff-format | ||
- repo: https://github.com/tox-dev/pyproject-fmt | ||
rev: 2.2.1 | ||
rev: v2.5.0 | ||
hooks: | ||
- id: pyproject-fmt | ||
- repo: https://github.com/abravalheri/validate-pyproject | ||
rev: v0.19 | ||
rev: v0.22 | ||
hooks: | ||
- id: validate-pyproject | ||
- repo: https://github.com/biomejs/pre-commit | ||
rev: "v0.4.0" | ||
rev: "v0.5.0" | ||
hooks: | ||
- id: biome-check | ||
additional_dependencies: ["@biomejs/biome@1.8.3"] | ||
additional_dependencies: ["@biomejs/biome@1.9.4"] | ||
args: [--unsafe] | ||
types_or: [javascript, json] | ||
types_or: [css, javascript, json] | ||
- repo: https://github.com/boidolr/pre-commit-images | ||
rev: v1.8.1 | ||
rev: v1.8.2 | ||
hooks: | ||
- id: optimize-avif | ||
- id: optimize-jpg | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
{% extends "base.html" %} | ||
|
||
{% load static i18n %} | ||
{% load i18n static %} | ||
|
||
{% block title %}{% translate "This page was not found" %}{% endblock %} | ||
|
||
{% block content %} | ||
<h1>{% translate "404: Sorry, we could not find the page you requested." %}</h1> | ||
{% endblock %} | ||
{% endblock content %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,4 +39,4 @@ <h2>{% translate 'Account' %}</h2> | |
{% endif %} | ||
</form> | ||
|
||
{% endblock %} | ||
{% endblock content %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,58 @@ | ||
{ | ||
"$schema": "https://biomejs.dev/schemas/1.8.3/schema.json", | ||
"organizeImports": { | ||
"enabled": false | ||
}, | ||
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json", | ||
"formatter": { | ||
"enabled": true, | ||
"indentStyle": "space", | ||
"indentWidth": 2 | ||
"useEditorconfig": true | ||
}, | ||
"linter": { | ||
"enabled": true, | ||
"rules": { | ||
"recommended": true, | ||
"a11y": { | ||
"noSvgWithoutTitle": "off" | ||
}, | ||
"complexity": { | ||
"noUselessStringConcat": "error", | ||
"noUselessUndefinedInitialization": "error" | ||
}, | ||
"correctness": { | ||
"noUndeclaredVariables": "error", | ||
"noUnknownMediaFeatureName": "off", | ||
"noUnusedFunctionParameters": "error", | ||
"noUnusedImports": "error", | ||
"noUnusedVariables": "error", | ||
"useArrayLiterals": "error", | ||
"useHookAtTopLevel": "error" | ||
}, | ||
"nursery": { | ||
"noDuplicateProperties": "error", | ||
"noUnknownTypeSelector": "error", | ||
"useCollapsedIf": "error" | ||
}, | ||
"security": { | ||
"noDangerouslySetInnerHtml": "warn" | ||
}, | ||
"style": { | ||
"noParameterAssign": "off", | ||
"useConsistentBuiltinInstantiation": "error", | ||
"useForOf": "warn" | ||
}, | ||
"suspicious": { | ||
"noAssignInExpressions": "off" | ||
"noArrayIndexKey": "warn", | ||
"noAssignInExpressions": "off", | ||
"useErrorMessage": "error" | ||
} | ||
} | ||
}, | ||
"javascript": { | ||
"formatter": { | ||
"semicolons": "asNeeded" | ||
} | ||
}, | ||
"globals": [] | ||
}, | ||
"css": { | ||
"json": { | ||
"formatter": { | ||
"enabled": true | ||
}, | ||
"linter": { | ||
"enabled": true | ||
"enabled": false | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,33 @@ | ||
# AUTOGENERATED, DO NOT EDIT | ||
|
||
anyio==4.4.0 | ||
anyio==4.6.2.post1 | ||
asgiref==3.8.1 | ||
blacknoise==1.0.2 | ||
blacknoise==1.1.0 | ||
certifi==2024.8.30 | ||
charset-normalizer==3.3.2 | ||
charset-normalizer==3.4.0 | ||
click==8.1.7 | ||
coverage==7.6.1 | ||
django==5.1.1 | ||
coverage==7.6.4 | ||
django==5.1.2 | ||
django-authlib==0.17.1 | ||
django-canonical-domain==0.11.0 | ||
django-debug-toolbar==5.0.0a0 | ||
django-ratelimit==4.1.0 | ||
granian==1.6.0 | ||
granian==1.6.3 | ||
idna==3.10 | ||
oauthlib==3.2.2 | ||
polib==1.2.0 | ||
psycopg==3.2.2 | ||
psycopg-binary==3.2.2 | ||
psycopg==3.2.3 | ||
psycopg-binary==3.2.3 | ||
python-dateutil==2.9.0.post0 | ||
requests==2.32.3 | ||
requests-oauthlib==2.0.0 | ||
sentry-sdk==2.14.0 | ||
sentry-sdk==2.17.0 | ||
six==1.16.0 | ||
sniffio==1.3.1 | ||
speckenv==6.2 | ||
sqlparse==0.5.1 | ||
starlette==0.38.5 | ||
time-machine==2.15.0 | ||
starlette==0.41.2 | ||
time-machine==2.16.0 | ||
typing-extensions==4.12.2 | ||
urllib3==2.2.3 | ||
uvloop==0.21.0b1 | ||
uvloop==0.21.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.