mirror of
https://github.com/simonw/sqlite-utils.git
synced 2026-09-12 11:34:09 +02:00
- mypy.ini: expanded configuration with module-specific settings - hookspecs.py: type annotations for hook functions - plugins.py: typed get_plugins() return value - recipes.py: full type annotations for parsedate, parsedatetime, jsonsplit - utils.py: extensive type annotations including Row type alias, TypeTracker, ValueTracker, and all utility functions - db.py: type annotations for Database methods (__exit__, ensure_autocommit_off, tracer, register_function, etc.) and Queryable class methods - tests/test_docs.py: updated to match new signature display format 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
32 lines
617 B
INI
32 lines
617 B
INI
[mypy]
|
|
python_version = 3.10
|
|
warn_return_any = False
|
|
warn_unused_configs = True
|
|
warn_redundant_casts = False
|
|
warn_unused_ignores = False
|
|
check_untyped_defs = True
|
|
disallow_untyped_defs = False
|
|
disallow_incomplete_defs = False
|
|
no_implicit_optional = True
|
|
strict_equality = True
|
|
|
|
[mypy-sqlite_utils.cli]
|
|
ignore_errors = True
|
|
|
|
[mypy-pysqlite3.*]
|
|
ignore_missing_imports = True
|
|
|
|
[mypy-sqlean.*]
|
|
ignore_missing_imports = True
|
|
|
|
[mypy-sqlite_dump.*]
|
|
ignore_missing_imports = True
|
|
|
|
[mypy-sqlite_fts4.*]
|
|
ignore_missing_imports = True
|
|
|
|
[mypy-pandas.*]
|
|
ignore_missing_imports = True
|
|
|
|
[mypy-numpy.*]
|
|
ignore_missing_imports = True
|