We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9937144 commit a71672eCopy full SHA for a71672e
.travis.yml
@@ -18,7 +18,7 @@ script:
18
- codecov --version
19
- tox
20
- isort --check src tests
21
- - black -l 100 --check src tests
+ - black --check src tests
22
after_success:
23
- codecov
24
notifications:
pyproject.toml
@@ -0,0 +1,12 @@
1
+# PEP 518: https://www.python.org/dev/peps/pep-0518/
2
+
3
+[tool.black]
4
+line-length = 100
5
6
+[tool.isort]
7
+force_single_line = true
8
+known_first_party = "cryptojwt"
9
+include_trailing_comma = true
10
+force_grid_wrap = 0
11
+use_parentheses = true
12
+line_length = 100
setup.cfg
0 commit comments