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 08451ec commit d128d70Copy full SHA for d128d70
.pre-commit-config.yaml
@@ -49,8 +49,8 @@ repos:
49
files: ^(helpers/python|.+\.py)$
50
exclude: completions/
51
52
- - repo: https://github.com/pre-commit/mirrors-isort
53
- rev: v4.3.21
+ - repo: https://github.com/timothycrosley/isort
+ rev: 5.0.7
54
hooks:
55
- id: isort
56
args: [--settings-path=test/setup.cfg]
test/setup.cfg
@@ -9,9 +9,10 @@ python_version = 3.4
9
ignore_missing_imports = true
10
11
[isort]
12
+known_first_party = conftest
13
known_third_party = pexpect,pytest
-multi_line_output = 3
14
-include_trailing_comma = True
+profile = black
15
+line_length = 79
16
17
[flake8]
18
extend-ignore = D202,E203,E501
0 commit comments