Skip to content

Commit aece22f

Browse files
committedSep 7, 2021
feat: check code style on pre-commit hook
1 parent 9c9db25 commit aece22f

File tree

5 files changed

+12049
-36
lines changed

5 files changed

+12049
-36
lines changed
 

‎.pre-commit-config.yaml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
repos:
2+
- repo: https://github.com/psf/black
3+
rev: 21.8b0
4+
hooks:
5+
- id: black
6+
language_version: python3.8
7+
- repo: https://gitlab.com/pycqa/flake8
8+
rev: 3.9.2
9+
hooks:
10+
- id: flake8

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ For a development installation (requires npm),
2020

2121
$ git clone https://github.com/mariobuikhuizen/ipyvue.git
2222
$ cd ipyvue
23-
$ pip install -e .
23+
$ pip install -e .[dev]
2424
$ jupyter nbextension install --py --symlink --sys-prefix ipyvue
2525
$ jupyter nbextension enable --py --sys-prefix ipyvue
2626
$ jupyter labextension develop . --overwrite

0 commit comments

Comments
 (0)
Please sign in to comment.