1
0
Fork 0
mirror of synced 2024-05-15 01:32:47 +12:00

Add tox configuration for formatting

This commit is contained in:
Serene-Arc 2022-12-03 15:04:02 +10:00
parent 0a3b3d7b7c
commit 2524070bd0

16
tox.ini Normal file
View file

@ -0,0 +1,16 @@
[tox]
envlist =
format
[testenv:format]
deps =
isort
black
skip_install = True
commands =
isort bdfr tests
black bdfr tests --line-length 120
[isort]
profile = black
multi_line_output = 3