Mercurial > libervia-backend
comparison pylintrc @ 3911:8289ac1b34f4
plugin XEP-0384: Fully reworked to adjust to the reworked python-omemo:
- support for both (modern) OMEMO under the `urn:xmpp:omemo:2` namespace and (legacy) OMEMO under the `eu.siacs.conversations.axolotl` namespace
- maintains one identity across both versions of OMEMO
- migrates data from the old plugin
- includes more features for protocol stability
- uses SCE for modern OMEMO
- fully type-checked, linted and format-checked
- added type hints to various pieces of backend code used by the plugin
- added stubs for some Twisted APIs used by the plugin under stubs/ (use `export MYPYPATH=stubs/` before running mypy)
- core (xmpp): enabled `send` trigger and made it an asyncPoint
fix 375
author | Syndace <me@syndace.dev> |
---|---|
date | Tue, 23 Aug 2022 21:06:24 +0200 |
parents | 00212260f659 |
children |
comparison
equal
deleted
inserted
replaced
3910:199598223f82 | 3911:8289ac1b34f4 |
---|---|
61 # no Warning level messages displayed, use "--disable=all --enable=classes | 61 # no Warning level messages displayed, use "--disable=all --enable=classes |
62 # --disable=W". | 62 # --disable=W". |
63 disable=missing-module-docstring, | 63 disable=missing-module-docstring, |
64 duplicate-code, | 64 duplicate-code, |
65 fixme, | 65 fixme, |
66 logging-fstring-interpolation | 66 logging-fstring-interpolation, |
67 broad-except | |
67 | 68 |
68 # Enable the message, report, category or checker with the given id(s). You can | 69 # Enable the message, report, category or checker with the given id(s). You can |
69 # either give multiple identifier separated by comma (,) or put this option | 70 # either give multiple identifier separated by comma (,) or put this option |
70 # multiple time (only on the command line, not in the configuration file where | 71 # multiple time (only on the command line, not in the configuration file where |
71 # it should appear only once). See also the "--disable" option for examples. | 72 # it should appear only once). See also the "--disable" option for examples. |