File tree 2 files changed +30
-0
lines changed
2 files changed +30
-0
lines changed Original file line number Diff line number Diff line change
1
+ repos :
2
+ - repo : local
3
+ hooks :
4
+ - id : lint-py-fix
5
+ name : Fix Python Lint
6
+ entry : hatch run lint-py --fix
7
+ language : system
8
+ pass_filenames : false
9
+ - repo : local
10
+ hooks :
11
+ - id : lint-py-check
12
+ name : Check Python Lint
13
+ entry : hatch run lint-py
14
+ language : system
15
+ pass_filenames : false
16
+ - repo : local
17
+ hooks :
18
+ - id : lint-js-fix
19
+ name : Fix JS Lint
20
+ entry : hatch run lint-js --fix
21
+ language : system
22
+ pass_filenames : false
23
+ - repo : local
24
+ hooks :
25
+ - id : lint-js-check
26
+ name : Check JS Lint
27
+ entry : hatch run lint-py
28
+ language : system
29
+ pass_filenames : false
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ dependencies = [
21
21
# publish
22
22
" semver >=2, <3" ,
23
23
" twine" ,
24
+ " pre-commit" ,
24
25
]
25
26
26
27
[tool .hatch .envs .default .scripts ]
You can’t perform that action at this time.
0 commit comments