12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- default_language_version:
- node: system
- python: python3
- repos:
- - repo: https://github.com/psf/black
- rev: 22.3.0
- hooks:
- - id: black
- language_version: python3
- args: ['--target-version', 'py38']
- - repo: https://github.com/astral-sh/ruff-pre-commit
- rev: 'v0.0.290'
- hooks:
- - id: ruff
- args: [--fix, --exit-non-zero-on-fix]
- - repo: https://github.com/pre-commit/mirrors-prettier
- rev: v3.1.0
- hooks:
- - id: prettier
- types_or: [css, scss, javascript, ts, tsx, json, yaml]
- - repo: https://github.com/pre-commit/mirrors-eslint
- rev: v8.55.0
- hooks:
- - id: eslint
- types: [file]
- files: \.(js)$
- args: [--report-unused-disable-directives]
- additional_dependencies:
- - eslint@8.55.0
- - repo: https://github.com/thibaudcolas/pre-commit-stylelint
- rev: v15.10.3
- hooks:
- - id: stylelint
- files: \.css$
- additional_dependencies:
- - stylelint@15.11.0
- - stylelint-config-standard@34.0.0
- - repo: https://github.com/rtts/djhtml
- rev: 3.0.6
- hooks:
- - id: djhtml
|