- [ ] validation could maybe be done with [typing.get_type_hints()](https://docs.python.org/3/library/typing.html#typing.get_type_hints) https://github.com/wheelnext/variantlib/pull/22#discussion_r2022402587 *Note Jonathan:* let's see how it works - not convinced it's really worth it - [x] using `re.VERBOSE` in `regex`: https://github.com/wheelnext/variantlib/pull/22#discussion_r2022405363 - [x] remove `^` and `$` from regular expressions (so they could be reused easily) and use `re.fullmatch()` where appropriate: #50 - [x] move shared fixtures to `conftest.py`: #49
validation could maybe be done with typing.get_type_hints()
[Refactoring] Code Re-factoring - Preparing for configuration read & sorting algorithm #22 (comment)
Note Jonathan: let's see how it works - not convinced it's really worth it
using
re.VERBOSEinregex: [Refactoring] Code Re-factoring - Preparing for configuration read & sorting algorithm #22 (comment)remove
^and$from regular expressions (so they could be reused easily) and usere.fullmatch()where appropriate: Usere.fullmatch()instead of embedding^$#50move shared fixtures to
conftest.py: Movemocked_plugin_loaderfixture toconftest.py#49