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 6f12a9f commit a6b49dbCopy full SHA for a6b49db
.pre-commit-config.yaml
@@ -19,14 +19,12 @@ repos:
19
rev: 22.3.0
20
hooks:
21
- id: black
22
- args: ["--line-length", "100"]
23
24
- repo: https://github.com/PyCQA/isort
25
rev: 5.10.1
26
27
- id: isort
28
files: \.py$
29
- args: [--profile=black]
30
31
- repo: https://github.com/pre-commit/mirrors-mypy
32
rev: v0.942
pyproject.toml
@@ -74,6 +74,12 @@ test = [
74
[project.scripts]
75
jupyter-server = "jupyter_server.serverapp:main"
76
77
+[tool.black]
78
+line_length = 100
79
+
80
+[tool.isort]
81
+profile = "black"
82
83
[tool.pytest.ini_options]
84
addopts = "-raXs --durations 10 --color=yes --doctest-modules"
85
testpaths = [
0 commit comments