summaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
authorLaurent Peuch <cortex@worlddomination.be>2020-03-18 19:42:58 +0100
committerLaurent Peuch <cortex@worlddomination.be>2020-03-18 19:42:58 +0100
commit8a910e9cb137ae04e9ad570adc46fa7104a5d9ab (patch)
tree6ea34784c0ba529ed2b358d6167a82366af8104b /pyproject.toml
parent5c3c1a5dd8ccea45cce331e07c5ca39a63b51660 (diff)
downloadlogilab-common-8a910e9cb137ae04e9ad570adc46fa7104a5d9ab.tar.gz
[black] add black to tox file based on yams black integration
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml15
1 files changed, 15 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 0000000..6071524
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,15 @@
+[tool.black]
+line-length = 100
+target-version = ['py37']
+exclude = '''(
+ \(
+ dist
+ | docs
+ | \.tox
+ | \.hg
+ | \.mypy_cache
+ | \.pytest_cache
+ | __pycache__
+ | logilab_common.egg-info
+ \)
+)'''