forked from hardbyte/python-can
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
34 lines (33 loc) · 792 Bytes
/
setup.cfg
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
[metadata]
license_file = LICENSE.txt
[mypy]
warn_return_any = True
warn_unused_configs = True
ignore_missing_imports = True
no_implicit_optional = True
disallow_incomplete_defs = True
warn_redundant_casts = True
warn_unused_ignores = True
exclude =
(?x)(
venv
|^test
|^setup.py$
|^can/interfaces/__init__.py
|^can/interfaces/etas
|^can/interfaces/gs_usb
|^can/interfaces/ics_neovi
|^can/interfaces/iscan
|^can/interfaces/ixxat
|^can/interfaces/kvaser
|^can/interfaces/nican
|^can/interfaces/neousys
|^can/interfaces/pcan
|^can/interfaces/serial
|^can/interfaces/slcan
|^can/interfaces/socketcan
|^can/interfaces/systec
|^can/interfaces/udp_multicast
|^can/interfaces/usb2can
|^can/interfaces/virtual
)