Skip to content

Commit

Permalink
Add codespell and ruff linting
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss committed Jul 27, 2024
1 parent ab28e78 commit 9c24630
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 22 deletions.
22 changes: 0 additions & 22 deletions .github/workflows/pytest.yml

This file was deleted.

15 changes: 15 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,18 @@ requires = [
"setuptools >= 66.1"
]
build-backend = "setuptools.build_meta"

[tool.codespell]
ignore-words-list = "alltime,blong,ccompiler,fo,hel"
skip = "*.bak"

[tool.ruff.lint]
select = [
"E9",
"F63",
"F7",
"F82",
]
[tool.ruff.lint.per-file-ignores]
"src/cffi/verifier.py" = ["F821"]
"testing/*" = ["F821"]

0 comments on commit 9c24630

Please sign in to comment.