Add more lint checks (#6706)

* add more lint checks

* fix lint
This commit is contained in:
Steven Silvester 2023-02-06 02:52:02 -06:00 committed by GitHub
parent 229247f912
commit 8ca2c1892b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 7 deletions

View File

@ -29,7 +29,7 @@ repos:
- id: black
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: v0.0.207
rev: v0.0.237
hooks:
- id: ruff
args: ["--fix"]

View File

@ -146,18 +146,18 @@ dependencies = [
"black[jupyter]==22.10.0",
"mdformat>0.7",
"mdformat-gfm>=0.3.5",
"ruff==0.0.189"
"ruff==0.0.237"
]
detached = true
[tool.hatch.envs.lint.scripts]
style = [
"ruff {args:notebook tests ui-tests}",
"ruff {args:.}",
"black --check --diff {args:.}",
"mdformat --check {args:CHANGELOG.md}"
]
fmt = [
"black {args:.}",
"ruff --fix {args:notebook}",
"ruff --fix {args:.}",
"mdformat {args:CHANGELOG.md}"
]
@ -252,8 +252,9 @@ skip-string-normalization = true
target-version = "py37"
line-length = 100
select = [
"A", "B", "C", "E", "F", "FBT", "I", "N", "Q", "RUF", "S", "T",
"UP", "W", "YTT",
"A", "B", "C", "DTZ", "E", "EM", "F", "FBT", "I", "ICN", "ISC", "N",
"PLC", "PLE", "PLR", "PLW", "Q", "RUF", "S", "SIM", "T", "TID", "UP",
"W", "YTT",
]
ignore = [
# Q000 Single quotes found but double quotes preferred
@ -267,7 +268,8 @@ ignore = [
[tool.ruff.per-file-ignores]
# S101 Use of `assert` detected
# F841 Local variable `foo` is assigned to but never used
"tests/*" = ["S101", "F841"]
# PLR2004 Magic value used in comparison
"tests/*" = ["S101", "F841", "PLR2004"]
[tool.interrogate]
ignore-init-module=true