File tree 3 files changed +4
-8
lines changed
3 files changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ codecov = "^2.0"
66
66
mypy = " ^0.770"
67
67
mkdocs = " ^1.0"
68
68
mkdocs-material = " ^4.1"
69
- isort = " ^4.3.21 "
69
+ isort = " ^5.7.0 "
70
70
freezegun = " ^0.3.15"
71
71
pydocstyle = " ^5.0.2"
72
72
pre-commit = " ^2.6.0"
@@ -76,11 +76,7 @@ cz = "commitizen.cli:main"
76
76
git-cz = " commitizen.cli:main"
77
77
78
78
[tool .isort ]
79
- multi_line_output = 3
80
- include_trailing_comma = true
81
- force_grid_wrap = 0
82
- combine_as_imports = true
83
- line_length = 88
79
+ profile = " black"
84
80
known_first_party = [" commitizen" , " tests" ]
85
81
86
82
[tool .coverage ]
Original file line number Diff line number Diff line change 7
7
8
8
set -x
9
9
10
- ${PREFIX} isort --recursive --apply commitizen tests
10
+ ${PREFIX} isort commitizen tests
11
11
${PREFIX} black commitizen tests
Original file line number Diff line number Diff line change 7
7
8
8
${PREFIX} pytest --cov-report term-missing --cov-report=xml:coverage.xml --cov=commitizen tests/
9
9
${PREFIX} black commitizen tests --check
10
- ${PREFIX} isort --recursive -- check-only commitizen tests
10
+ ${PREFIX} isort --check-only commitizen tests
11
11
${PREFIX} flake8 commitizen/ tests/
12
12
${PREFIX} mypy commitizen/ tests/
13
13
${PREFIX} pydocstyle --convention=google --add-ignore=D1,D415
You can’t perform that action at this time.
0 commit comments