Skip to content
Snippets Groups Projects
Commit 81309e54 authored by Ivan Procaccini's avatar Ivan Procaccini
Browse files

Chore: Add config files

parent 36b64802
No related branches found
No related tags found
No related merge requests found
[flake8]
# E501: line too long
# H202: assertRaises Exception too broad
# H306: imports not in alphabetical order (time, os)
# W292: no newline at the end of file
# F821: undefined name
ignore = W292,H202,H306,E501,F821
extend_exclude = venv/,__pycache__,.ini
[settings]
profile=black
......@@ -7,6 +7,12 @@ repos:
hooks:
- id: trailing-whitespace
- id: debug-statements
- repo: https://github.com/pycqa/isort
rev: 5.10.1
hooks:
- id: isort
name: isort (python)
args: [ --profile, black ]
- repo: https://github.com/ambv/black
rev: 22.6.0
hooks:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment