mirror of
https://github.com/Chia-Network/chia-blockchain.git
synced 2026-08-24 10:05:29 -05:00
* Add .clvm.hex pre-commit check
* report all results
* stuff
* maybe pass
* add todo
* explicitly define suffixes
* check for (and remove) extra hex and hash files
* remove garbage failure hex and hash files
* provide runner scripts
* matrix pre-commit checks
* maybe now
* more cross platform
* move it
* oops
* shell:
* maybe
* more configurable
* explicitly specify powershell
* tidy
* remove other stuff
* tidy
* remove existing pytest clvm hex etc checker
* add a trailing newline to decompress_block_spends.clvm.hex.sha256tree
* Update activated.ps1
* git config --global core.autocrlf false
* Update pre-commit.yml
* only check `chia/`
* typing_extensions
* typing_extensions
* removing unused typing import
* move top_level out of the rglob
* catchup dl clvm hex files
* Revert "catchup dl clvm hex files"
This reverts commit cd3d4f70b8.
* now
71 lines
2.0 KiB
YAML
71 lines
2.0 KiB
YAML
repos:
|
|
- repo: local
|
|
hooks:
|
|
- id: check-sql
|
|
name: Validate SQL statements
|
|
entry: ./tests/check_sql_statements.py
|
|
language: python
|
|
pass_filenames: false
|
|
- repo: local
|
|
hooks:
|
|
- id: init_py_files
|
|
name: __init__.py files
|
|
entry: python3 tests/build-init-files.py -v --root .
|
|
language: python
|
|
pass_filenames: false
|
|
additional_dependencies: [click~=7.1]
|
|
- repo: https://github.com/psf/black
|
|
rev: 21.12b0
|
|
hooks:
|
|
- id: black
|
|
additional_dependencies: ['click<8.1']
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v4.3.0
|
|
hooks:
|
|
- id: check-yaml
|
|
- id: end-of-file-fixer
|
|
exclude: ".*?(.hex|.clvm|.clib)"
|
|
- id: trailing-whitespace
|
|
- id: check-merge-conflict
|
|
- id: check-ast
|
|
- id: debug-statements
|
|
- repo: local
|
|
hooks:
|
|
- id: clvm_hex
|
|
name: .clvm.hex files
|
|
entry: ./activated.py python tests/check_clvm.py
|
|
language: python
|
|
pass_filenames: false
|
|
- repo: local
|
|
hooks:
|
|
- id: mypy
|
|
name: mypy
|
|
entry: ./activated.py mypy
|
|
language: system
|
|
pass_filenames: false
|
|
# The following, commented hook is the usual way to add isort. However, it doesn't work in some environments.
|
|
# See https://github.com/PyCQA/isort/issues/1874#issuecomment-1002212936
|
|
# -----------------------------------------------------
|
|
# - repo: https://github.com/pycqa/isort
|
|
# rev: 5.9.3
|
|
# hooks:
|
|
# - id: isort
|
|
# -----------------------------------------------------
|
|
# The hook below is the workaround for the issue above.
|
|
- repo: local
|
|
hooks:
|
|
- id: isort
|
|
name: isort
|
|
entry: isort
|
|
require_serial: true
|
|
language: python
|
|
language_version: python3
|
|
types_or: [cython, pyi, python]
|
|
args: ['--filter-files']
|
|
minimum_pre_commit_version: '2.9.2'
|
|
additional_dependencies: [isort==5.10.1]
|
|
- repo: https://gitlab.com/pycqa/flake8
|
|
rev: 5.0.4
|
|
hooks:
|
|
- id: flake8
|