mirror of
https://github.com/jupyter/notebook.git
synced 2025-03-31 13:40:29 +08:00
Clean up lint handling (#7142)
This commit is contained in:
parent
2ee380b3e8
commit
7c43de793e
3
.github/workflows/build.yml
vendored
3
.github/workflows/build.yml
vendored
@ -187,13 +187,14 @@ jobs:
|
||||
- name: Run Linters
|
||||
run: |
|
||||
hatch run typing:test
|
||||
hatch run lint:style
|
||||
hatch run lint:build
|
||||
pipx run interrogate -v .
|
||||
pipx run doc8 --max-line-length=200 docs/source *.md
|
||||
npm install -g yarn
|
||||
yarn
|
||||
yarn eslint:check
|
||||
yarn prettier:check
|
||||
yarn build:utils
|
||||
yarn integrity
|
||||
|
||||
tests_check: # This job does nothing and is only used for the branch protection
|
||||
|
@ -43,6 +43,15 @@ repos:
|
||||
docs/source/examples/images/FrontendKernel.graffle/data.plist|
|
||||
)$
|
||||
|
||||
- repo: https://github.com/pre-commit/mirrors-mypy
|
||||
rev: "v1.6.1"
|
||||
hooks:
|
||||
- id: mypy
|
||||
files: "^notebook"
|
||||
stages: [manual]
|
||||
args: ["--install-types", "--non-interactive"]
|
||||
additional_dependencies: ["traitlets>=5.13", "tornado", "jupyter_server>=2.9", "jupyterlab_server>=2.25", "jupyterlab>=4.0"]
|
||||
|
||||
- repo: https://github.com/pre-commit/pygrep-hooks
|
||||
rev: 'v1.10.0'
|
||||
hooks:
|
||||
|
@ -134,30 +134,17 @@ dependencies = ["coverage[toml]", "pytest-cov"]
|
||||
test = "python -m pytest -vv --cov notebook --cov-branch --cov-report term-missing:skip-covered {args}"
|
||||
nowarn = "test -W default {args}"
|
||||
|
||||
[tool.hatch.envs.typing]
|
||||
features = ["test"]
|
||||
dependencies = ["mypy>=1.5.1"]
|
||||
[tool.hatch.envs.typing.scripts]
|
||||
test = "mypy --install-types --non-interactive {args}"
|
||||
|
||||
[tool.hatch.envs.lint]
|
||||
dependencies = [
|
||||
"mdformat>0.7",
|
||||
"mdformat-gfm>=0.3.5",
|
||||
"ruff==0.1.3"
|
||||
]
|
||||
detached = true
|
||||
dependencies = ["pre-commit"]
|
||||
[tool.hatch.envs.lint.scripts]
|
||||
style = [
|
||||
"ruff {args:.}",
|
||||
"ruff format {args:.}",
|
||||
"mdformat --check {args:CHANGELOG.md}"
|
||||
]
|
||||
fmt = [
|
||||
"ruff --fix {args:.}",
|
||||
"ruff format {args:.}",
|
||||
"mdformat {args:CHANGELOG.md}"
|
||||
]
|
||||
build = "pre-commit run --all-files ruff"
|
||||
|
||||
[tool.hatch.envs.typing]
|
||||
dependencies = [ "pre-commit"]
|
||||
detached = true
|
||||
[tool.hatch.envs.typing.scripts]
|
||||
test = "pre-commit run --all-files --hook-stage manual mypy"
|
||||
|
||||
[tool.hatch.build.hooks.jupyter-builder]
|
||||
dependencies = ["hatch-jupyter-builder>=0.5"]
|
||||
@ -203,7 +190,7 @@ minversion = "6.0"
|
||||
xfail_strict = true
|
||||
log_cli_level = "info"
|
||||
addopts = [
|
||||
"-raXs", "--durations=10", "--color=yes", "--doctest-modules",
|
||||
"-ra", "--durations=10", "--color=yes", "--doctest-modules",
|
||||
"--showlocals", "--strict-markers", "--strict-config"
|
||||
]
|
||||
testpaths = [
|
||||
@ -285,4 +272,4 @@ fail-under=100
|
||||
exclude = ["tests", "ui-tests", "docs", "node_modules", "setup.py"]
|
||||
|
||||
[tool.repo-review]
|
||||
ignore = ["PY007", "PP308", "GH102", "PC140", "PC180"]
|
||||
ignore = ["PY007", "GH102", "PC180"]
|
||||
|
Loading…
x
Reference in New Issue
Block a user