1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
|
[tool.black]
line-length = 100
target-version = ['py39']
[tool.isort]
profile = "black"
# default is FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
# Placing third-party imports at the end makes their inclusion more obvious
sections = ["FUTURE", "STDLIB", "FIRSTPARTY", "THIRDPARTY", "LOCALFOLDER"]
[tool.mypy]
warn_redundant_casts = true
warn_return_any = true
warn_unreachable = true
scripts_are_modules = true
warn_unused_configs = true
# Disallow dynamic typing
# disallow_any_unimported = true
# disallow_any_expr = true
# disallow_any_decorated = true
# disallow_any_explicit = true
# disallow_any_generics = true
# disallow_subclassing_any = true
# Untyped definitions and calls
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
# check_untyped_defs = true
disallow_untyped_decorators = true
# None and optional handling
# Configuring warnings
warn_unused_ignores = true
#warn_return_any = true
#warn_unreachable = true
# Miscellaneous
#warn_unused_configs = true
[[tool.mypy.overrides]]
module = [
"Bio.PDB.Atom",
"Bio.PDB.Superimposer",
"PyQt4",
"PyQuante.CGBF",
"PyQuante.Molecule",
"PyQuante.hartree_fock",
"ase",
"ase.calculators.calculator",
"ase.calculators.emt",
"ase.io.trajectory",
"h5py",
"horton",
"horton.io.iodata",
"iodata",
"iodata.api",
"iodata.orbitals",
"openbabel",
"openbabel.pybel",
"periodictable",
"psi4",
"psi4.core",
"pybel",
"pyquante2",
"pyscf",
"pyvtk",
"pyvtk.DataSetAttr",
"scipy",
"scipy.constants",
"scipy.spatial",
"scipy.spatial.transform",
"skip",
"test_data",
"common",
]
ignore_missing_imports = true
|