Skip to content

Commit d2ef92f

Browse files
Backport PR #7142: Clean up lint handling (#7185)
Co-authored-by: Steven Silvester <[email protected]>
1 parent 8e9390d commit d2ef92f

File tree

3 files changed

+21
-24
lines changed

3 files changed

+21
-24
lines changed

.github/workflows/build.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -187,13 +187,14 @@ jobs:
187187
- name: Run Linters
188188
run: |
189189
hatch run typing:test
190-
hatch run lint:style
190+
hatch run lint:build
191191
pipx run interrogate -v .
192192
pipx run doc8 --max-line-length=200 docs/source *.md
193193
npm install -g yarn
194194
yarn
195195
yarn eslint:check
196196
yarn prettier:check
197+
yarn build:utils
197198
yarn integrity
198199
199200
tests_check: # This job does nothing and is only used for the branch protection

.pre-commit-config.yaml

+9
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,15 @@ repos:
4343
docs/source/examples/images/FrontendKernel.graffle/data.plist|
4444
)$
4545
46+
- repo: https://github.com/pre-commit/mirrors-mypy
47+
rev: "v1.6.1"
48+
hooks:
49+
- id: mypy
50+
files: "^notebook"
51+
stages: [manual]
52+
args: ["--install-types", "--non-interactive"]
53+
additional_dependencies: ["traitlets>=5.13", "tornado", "jupyter_server>=2.9", "jupyterlab_server>=2.25", "jupyterlab>=4.0"]
54+
4655
- repo: https://github.com/pre-commit/pygrep-hooks
4756
rev: 'v1.10.0'
4857
hooks:

pyproject.toml

+10-23
Original file line numberDiff line numberDiff line change
@@ -134,30 +134,17 @@ dependencies = ["coverage[toml]", "pytest-cov"]
134134
test = "python -m pytest -vv --cov notebook --cov-branch --cov-report term-missing:skip-covered {args}"
135135
nowarn = "test -W default {args}"
136136

137-
[tool.hatch.envs.typing]
138-
features = ["test"]
139-
dependencies = ["mypy>=1.5.1"]
140-
[tool.hatch.envs.typing.scripts]
141-
test = "mypy --install-types --non-interactive {args}"
142-
143137
[tool.hatch.envs.lint]
144-
dependencies = [
145-
"mdformat>0.7",
146-
"mdformat-gfm>=0.3.5",
147-
"ruff==0.1.3"
148-
]
149138
detached = true
139+
dependencies = ["pre-commit"]
150140
[tool.hatch.envs.lint.scripts]
151-
style = [
152-
"ruff {args:.}",
153-
"ruff format {args:.}",
154-
"mdformat --check {args:CHANGELOG.md}"
155-
]
156-
fmt = [
157-
"ruff --fix {args:.}",
158-
"ruff format {args:.}",
159-
"mdformat {args:CHANGELOG.md}"
160-
]
141+
build = "pre-commit run --all-files ruff"
142+
143+
[tool.hatch.envs.typing]
144+
dependencies = [ "pre-commit"]
145+
detached = true
146+
[tool.hatch.envs.typing.scripts]
147+
test = "pre-commit run --all-files --hook-stage manual mypy"
161148

162149
[tool.hatch.build.hooks.jupyter-builder]
163150
dependencies = ["hatch-jupyter-builder>=0.5"]
@@ -203,7 +190,7 @@ minversion = "6.0"
203190
xfail_strict = true
204191
log_cli_level = "info"
205192
addopts = [
206-
"-raXs", "--durations=10", "--color=yes", "--doctest-modules",
193+
"-ra", "--durations=10", "--color=yes", "--doctest-modules",
207194
"--showlocals", "--strict-markers", "--strict-config"
208195
]
209196
testpaths = [
@@ -285,4 +272,4 @@ fail-under=100
285272
exclude = ["tests", "ui-tests", "docs", "node_modules", "setup.py"]
286273

287274
[tool.repo-review]
288-
ignore = ["PY007", "PP308", "GH102", "PC140", "PC180"]
275+
ignore = ["PY007", "GH102", "PC180"]

0 commit comments

Comments
 (0)