mirror of https://github.com/avast/PurpleDome
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
492 B
INI
15 lines
492 B
INI
# My own Mypy configuration
|
|
|
|
# Global settings
|
|
[mypy]
|
|
warn_unused_configs = True
|
|
mypy_path = $MYPY_CONFIG_FILE_DIR:$MYPY_CONFIG_FILE_DIR/app:$MYPY_CONFIG_FILE_DIR/plugins/base
|
|
# disallow_untyped_defs = True # Activate that as soon as refactoring and "make stepbystep" works
|
|
# check_untyped_defs = True # Activate that as soon as refactoring and "make stepbystep" works
|
|
exclude = app/calderaapi_2.py
|
|
|
|
# Setting for the main app
|
|
[mypy-app.*]
|
|
|
|
# Setting for the plugins
|
|
[mypy-plugins.base.*] |