Gab's Notes backend
https://gabnotes.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
80 lines
2.1 KiB
80 lines
2.1 KiB
exclude: (\.min\.(js|css)(\.map)?$|/vendor/) |
|
repos: |
|
- repo: https://github.com/pre-commit/pre-commit-hooks |
|
rev: v4.1.0 |
|
hooks: |
|
- id: check-ast |
|
- id: check-json |
|
- id: check-toml |
|
- id: check-xml |
|
- id: check-yaml |
|
args: [--allow-multiple-documents] |
|
- id: end-of-file-fixer |
|
- id: check-merge-conflict |
|
- id: debug-statements |
|
- id: detect-private-key |
|
- id: pretty-format-json |
|
args: |
|
- --autofix |
|
- --no-sort-keys |
|
- id: trailing-whitespace |
|
args: |
|
- --markdown-linebreak-ext=md |
|
- repo: https://github.com/timothycrosley/isort |
|
rev: 5.10.1 |
|
hooks: |
|
- id: isort |
|
- repo: https://github.com/psf/black |
|
rev: 21.12b0 |
|
hooks: |
|
- id: black |
|
- repo: https://github.com/asottile/pyupgrade |
|
rev: v2.30.0 |
|
hooks: |
|
- id: pyupgrade |
|
args: |
|
- --py310-plus |
|
- repo: https://github.com/adamchainz/django-upgrade |
|
rev: 1.4.0 |
|
hooks: |
|
- id: django-upgrade |
|
args: [--target-version, "4.0"] |
|
- repo: https://github.com/rtts/djhtml |
|
rev: v1.4.11 |
|
hooks: |
|
- id: djhtml |
|
- repo: https://github.com/mcarans/flakehell |
|
rev: 1b84f4dd6c16232b5c0c6206511427676ab55f5b |
|
hooks: |
|
- id: flakehell |
|
additional_dependencies: |
|
- flake8-annotations-complexity |
|
- flake8-builtins |
|
- flake8-bugbear |
|
- flake8-comprehensions |
|
- flake8-eradicate |
|
- flake8-noqa |
|
- flake8-pytest-style |
|
- flake8-pyi |
|
- wemake-python-styleguide |
|
- repo: https://github.com/pre-commit/mirrors-prettier |
|
rev: v2.5.1 |
|
hooks: |
|
- id: prettier |
|
types_or: [javascript, css] |
|
- repo: https://github.com/pre-commit/mirrors-eslint |
|
rev: v8.5.0 |
|
hooks: |
|
- id: eslint |
|
args: [--fix] |
|
types_or: [javascript, css] |
|
additional_dependencies: |
|
- eslint@^7.29.0 |
|
- eslint-config-prettier@^8.3.0 |
|
- repo: local |
|
hooks: |
|
- id: mypy |
|
name: mypy |
|
entry: mypy |
|
language: system |
|
types_or: [python, pyi]
|
|
|