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 1d40173 commit d0af3d8Copy full SHA for d0af3d8
.github/workflows/pythonpackage.yml
@@ -30,6 +30,9 @@ jobs:
30
- name: Check style
31
run: |
32
flake8 src --count --statistics
33
+ - name: Check import order
34
+ run: |
35
+ isort src --check-only --recursive
36
- name: Check typing
37
38
mypy src
setup.cfg
@@ -1,5 +1,11 @@
1
[flake8]
2
max-line-length = 120
3
4
+[isort]
5
+# https://github.com/timothycrosley/isort/wiki/isort-Settings
6
+line_length = 120
7
+multi_line_output = 3
8
+include_trailing_comma = True
9
+
10
[mypy]
11
disallow_untyped_defs = true
0 commit comments