mirror of
https://github.com/Qoyyuum/Forex-MT5-Bot.git
synced 2026-02-22 23:53:15 +00:00
27 lines
701 B
YAML
27 lines
701 B
YAML
default_language_version:
|
|
python: python3.9
|
|
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v4.0.1
|
|
hooks:
|
|
- id: check-ast
|
|
- id: check-docstring-first
|
|
- id: check-merge-conflict
|
|
- id: check-case-conflict
|
|
- id: trailing-whitespace
|
|
- id: end-of-file-fixer
|
|
- repo: https://github.com/psf/black
|
|
rev: 21.9b0
|
|
hooks:
|
|
- id: black
|
|
args: [--config=pyproject.toml]
|
|
- repo: https://github.com/pycqa/isort
|
|
rev: 5.9.3
|
|
hooks:
|
|
- id: isort
|
|
files: "\\.(py)$"
|
|
args: [--settings-path=pyproject.toml]
|
|
- repo: https://github.com/pre-commit/mirrors-mypy
|
|
rev: 'v0.910'
|
|
hooks:
|
|
- id: mypy
|