Skip to content

Commit 43ab75c

Browse files
authored
Merge pull request #113 from Bernardoow/adding_pre_commit
Added pre-commit with just one hooks (flake8 to check line length).
2 parents 0fc07fd + 40fc051 commit 43ab75c

File tree

4 files changed

+253
-1
lines changed

4 files changed

+253
-1
lines changed

.pre-commit-config.yaml

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
repos:
2+
- repo: https://gitlab.com/pycqa/flake8
3+
rev: 3.7.9
4+
hooks:
5+
- id: flake8
6+
args: ['--select=E501']
7+
language_version: python3

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ cd Flask-GoogleMaps
2727
poetry use env 3.8 # just to create virtualenv at the first time
2828
poetry shell # activate virtualenv
2929
poetry install # to install all for dev
30+
pre-commit install # to install pre-commit hooks
3031
```
3132

3233
## Installation

0 commit comments

Comments
 (0)