forked from nucypher/nucypher-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pre-commit-config.yaml
38 lines (34 loc) · 902 Bytes
/
.pre-commit-config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
repos:
- repo: https://github.com/psf/black
rev: 23.11.0
hooks:
- id: black
- repo: https://github.com/pycqa/flake8
rev: 6.1.0
hooks:
- id: flake8
- repo: https://github.com/pre-commit/mirrors-isort
rev: v5.10.1
hooks:
- id: isort
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v3.0.3
hooks:
- id: prettier
- repo: local
hooks:
- id: lint-sol
name: "lint solidity"
description: "Checks Solidity code according to the package's linter configuration"
language: node
entry: solhint
files: '\.sol$'
args:
- --config=./.solhint.json
- --ignore-path=./.solhintignore
- ./contracts/**/*.sol
additional_dependencies:
- solhint
- solhint-plugin-prettier
- prettier
- prettier-plugin-solidity